diff options
| author | Leandro Pereira <leandro@hardinfo.org> | 2020-05-15 15:22:59 -0700 | 
|---|---|---|
| committer | Leandro Pereira <leandro@hardinfo.org> | 2020-05-15 15:22:59 -0700 | 
| commit | f4160cb34a636ceda799ca9a00a611960536802d (patch) | |
| tree | 05017a94900b28b47235c73842c644304e4bc17c /shell | |
| parent | b347f952e255c70e71e987f86bc7c11636072f81 (diff) | |
Show Network Updater button in the toolbar if available
Diffstat (limited to 'shell')
| -rw-r--r-- | shell/shell.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/shell/shell.c b/shell/shell.c index c1113dab..872bf593 100644 --- a/shell/shell.c +++ b/shell/shell.c @@ -293,7 +293,6 @@ void shell_view_set_enabled(gboolean setting)      shell_action_set_enabled("CopyAction", setting);      shell_action_set_enabled("ReportAction", setting);      shell_action_set_enabled("SyncManagerAction", setting && sync_manager_count_entries() > 0); -  }  void shell_status_set_enabled(gboolean setting) @@ -761,6 +760,7 @@ void shell_init(GSList * modules)      shell_action_set_property("RefreshAction", "is-important", TRUE);      shell_action_set_property("ReportAction", "is-important", TRUE);      shell_action_set_property("ReportBugAction", "is-important", TRUE); +    shell_action_set_property("SyncManagerAction", "is-important", TRUE);      shell->tree = tree_new();      shell->info_tree = info_tree_new(); | 
