diff options
author | bigbear <ns@bigbear.dk> | 2024-02-08 03:00:44 +0100 |
---|---|---|
committer | bigbear <ns@bigbear.dk> | 2024-02-08 19:52:53 +0100 |
commit | c298027fefc0f5e85f82e486ee3c84aa8a8f9fe4 (patch) | |
tree | 626080c00df2c9c80575900171a83eb73b7c9c00 /shell/shell.c | |
parent | c7282f2d5e5952f5c76a5225072f6257bc0c5776 (diff) |
CLEANUP - remove old stuff
Diffstat (limited to 'shell/shell.c')
-rw-r--r-- | shell/shell.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/shell/shell.c b/shell/shell.c index 81f3e084..57e5598c 100644 --- a/shell/shell.c +++ b/shell/shell.c @@ -818,9 +818,7 @@ void shell_init(GSList * modules) shell->tree->modules = modules ? modules : modules_load_all(); -#ifdef HAS_LIBSOUP check_for_updates(); -#endif g_slist_foreach(shell->tree->modules, shell_add_modules_to_gui, shell->tree); gtk_tree_view_expand_all(GTK_TREE_VIEW(shell->tree->view)); @@ -839,11 +837,7 @@ void shell_init(GSList * modules) shell_action_set_active("SidePaneAction", TRUE); shell_action_set_active("ToolbarAction", TRUE); -#ifndef HAS_LIBSOUP - shell_action_set_enabled("SyncManagerAction", FALSE); -#else shell_action_set_enabled("SyncManagerAction", sync_manager_count_entries() > 0); -#endif /* Should select Computer Summary (note: not Computer/Summary) */ g_idle_add(select_first_tree_item, NULL); |