diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2012-09-29 16:13:50 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2012-10-06 05:26:55 +0900 |
commit | b4c11a7ed3806c7ac30666676ffe5640d6c07bca (patch) | |
tree | 1d7bff4524c503862052a1b927d16ae2c30d5ca9 /gtk-gui.c | |
parent | 3e7780e7cd98549c40ef3e95faf002120a212997 (diff) | |
download | subsurface-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.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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(); |