aboutsummaryrefslogtreecommitdiff
path: root/shell/shell.c
diff options
context:
space:
mode:
authorhwspeedy <ns@bigbear.dk>2024-03-20 23:04:06 +0100
committerhwspeedy <ns@bigbear.dk>2024-03-20 23:04:06 +0100
commita966befe362cd5ae11ba43b4c284a6222d5998b8 (patch)
treeeed5c93fb2b4b03f4503fc247f29d9ab7e63affe /shell/shell.c
parentf7534df1cdb6282cedf5a0c69b9cccda1213645d (diff)
FIX CLI updated with synchronize features, fix stop benchmark crash, libsoup3 debug fixed+added sync. comm for cli, DOCs updated, LibSoup3 enabled for distros supporting LS3
Diffstat (limited to 'shell/shell.c')
-rw-r--r--shell/shell.c8
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;
}