diff options
author | hwspeedy <ns@bigbear.dk> | 2024-04-24 01:16:57 +0200 |
---|---|---|
committer | hwspeedy <ns@bigbear.dk> | 2024-04-24 01:16:57 +0200 |
commit | 791912482ff618cd6ca08224db01b243d7186215 (patch) | |
tree | 58c71400b28400b8d5f7149b1516f76e33da314b /shell/menu.c | |
parent | abf8fabf4df677a1fbf58e4955d1cc08eace48d2 (diff) |
FIX Added theme background - copyright crstrbrt - mentioned but not needed.
Diffstat (limited to 'shell/menu.c')
-rw-r--r-- | shell/menu.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/shell/menu.c b/shell/menu.c index 83bd8144..b9e62664 100644 --- a/shell/menu.c +++ b/shell/menu.c @@ -41,10 +41,8 @@ static GtkActionEntry entries[] = { {"InformationMenuAction", NULL, N_("_Information")}, /* name, stock id, label */ - // {"RemoteMenuAction", NULL, N_("_Remote")}, {"ViewMenuAction", NULL, N_("_View")}, {"HelpMenuAction", NULL, N_("_Help")}, - // {"HelpMenuModulesAction", HI_STOCK_ABOUT_MODULES, N_("About _Modules")}, {"MainMenuBarAction", NULL, ""}, {"ReportAction", HI_STOCK_REPORT, /* name, stock id */ @@ -106,6 +104,12 @@ static GtkToggleActionEntry toggle_entries[] = { N_("Synchronize on startup"), NULL, NULL, G_CALLBACK(cb_sync_on_startup)}, +#if GTK_CHECK_VERSION(3, 0, 0) + {"DisableThemeAction", NULL, + N_("Disable Theme at startup"), NULL, + NULL, + G_CALLBACK(cb_disable_theme)}, +#endif }; /* Implement a handler for GtkUIManager's "add_widget" signal. The UI manager |