summaryrefslogtreecommitdiffstats
path: root/gtk-gui.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2012-09-29 16:13:50 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2012-10-06 05:26:55 +0900
commitb4c11a7ed3806c7ac30666676ffe5640d6c07bca (patch)
tree1d7bff4524c503862052a1b927d16ae2c30d5ca9 /gtk-gui.c
parent3e7780e7cd98549c40ef3e95faf002120a212997 (diff)
downloadsubsurface-b4c11a7ed3806c7ac30666676ffe5640d6c07bca.tar.gz
Turn menu and button images on regardless of OS settings.v2.0
Right now the menu and button images are a distribution choice - some have them on, some have them off. I kinda like them and think that even on OSs that have them off by default this doesn't look out of place (as other apps clearly do the same). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'gtk-gui.c')
-rw-r--r--gtk-gui.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk-gui.c b/gtk-gui.c
index 0312fe695..cf271be92 100644
--- a/gtk-gui.c
+++ b/gtk-gui.c
@@ -1009,7 +1009,9 @@ void init_ui(int *argcp, char ***argvp)
gtk_init(argcp, argvp);
settings = gtk_settings_get_default();
- gtk_settings_set_long_property(settings, "gtk_tooltip_timeout", 10, "subsurface setting");
+ gtk_settings_set_long_property(settings, "gtk-tooltip-timeout", 10, "subsurface setting");
+ gtk_settings_set_long_property(settings, "gtk-menu-images", 1, "subsurface setting");
+ gtk_settings_set_long_property(settings, "gtk-button-images", 1, "subsurface setting");
g_type_init();