diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2011-10-04 16:06:27 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2011-10-04 16:06:27 -0700 |
commit | 7a7b58340d75c6c81e28a2365694faa992df4242 (patch) | |
tree | f43017591636907cbae8750942ccb065be5e2ec0 /gtk-gui.c | |
parent | d78e6a48765241ede7b1ac2c68a16f7718ab9459 (diff) | |
download | subsurface-7a7b58340d75c6c81e28a2365694faa992df4242.tar.gz |
Shorten the tooltip timeout
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'gtk-gui.c')
-rw-r--r-- | gtk-gui.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -588,11 +588,14 @@ void init_ui(int argc, char **argv) GtkWidget *equipment; GtkWidget *menubar; GtkWidget *vbox; + GtkSettings *settings; static const GtkTargetEntry notebook_target = { "GTK_NOTEBOOK_TAB", GTK_TARGET_SAME_APP, 0 }; gtk_init(&argc, &argv); + settings = gtk_settings_get_default(); + gtk_settings_set_long_property(settings, "gtk_tooltip_timeout", 10, "subsurface setting"); g_type_init(); gconf = gconf_client_get_default(); |