diff options
author | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2024-04-22 19:19:56 -0300 |
---|---|---|
committer | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2024-04-22 19:19:56 -0300 |
commit | fbf360db614483cc1655e47be4744b5bd00d54f5 (patch) | |
tree | 15cf74264e91ede73e5d4a0e18a3d32091ceddc2 /shell/shell.c | |
parent | 647775860805ea26a377c10d1490686a6f7a3434 (diff) | |
parent | 0574020490ffae5686b0c75d7753bfbcf2286114 (diff) |
Update upstream source from tag 'upstream/2.0.17pre'
Update to upstream version '2.0.17pre'
with Debian dir 5d26fb98f3078817a456822b48c33e4ffac5c49e
Diffstat (limited to 'shell/shell.c')
-rw-r--r-- | shell/shell.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/shell/shell.c b/shell/shell.c index e3f64891..31434c43 100644 --- a/shell/shell.c +++ b/shell/shell.c @@ -334,6 +334,7 @@ void shell_do_reload(void) void shell_status_update(const gchar * message) { + DEBUG("Shell_status_update %s",message); if (params.gui_running) { gtk_label_set_markup(GTK_LABEL(shell->status), message); gtk_progress_bar_pulse(GTK_PROGRESS_BAR(shell->progress)); @@ -684,8 +685,9 @@ check_for_updates(void) g_free(conf_path); g_key_file_free(key_file); - if (setting) { - sync_manager_update_on_startup(); + //fetching data -u is used + if (setting || params.bench_user_note) { + sync_manager_update_on_startup(0); } } @@ -1737,6 +1739,7 @@ module_selected_show_info(ShellModuleEntry *entry, gboolean reload) shell_set_note_from_entry(entry); gdk_window_thaw_updates(gdk_window); + } static void info_selected_show_extra(const gchar *tag) @@ -2021,7 +2024,6 @@ static void module_selected(gpointer data) shell_show_detail_view(); } } - current = entry; updating = FALSE; } |