diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-25 16:43:57 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-25 16:43:57 +0000 |
commit | 9526ee659401dee7160f35cb62ded2779bcbbc99 (patch) | |
tree | 812ad73bde9c84dcc02a3acbc5db576369ca314a /main/xfce4-wavelan-plugin/tooltip.diff | |
parent | 05e09c1126a898b6d0af491fef0401bf53e297f8 (diff) | |
download | aports-9526ee659401dee7160f35cb62ded2779bcbbc99.tar.bz2 aports-9526ee659401dee7160f35cb62ded2779bcbbc99.tar.xz |
merged x11 repository into main
ref #255
Diffstat (limited to 'main/xfce4-wavelan-plugin/tooltip.diff')
-rw-r--r-- | main/xfce4-wavelan-plugin/tooltip.diff | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/main/xfce4-wavelan-plugin/tooltip.diff b/main/xfce4-wavelan-plugin/tooltip.diff new file mode 100644 index 0000000000..f180f5694a --- /dev/null +++ b/main/xfce4-wavelan-plugin/tooltip.diff @@ -0,0 +1,19 @@ +diff -Naur xfce4-wavelan-plugin-0.5.5.old/panel-plugin/wavelan.c xfce4-wavelan-plugin-0.5.5/panel-plugin/wavelan.c +--- xfce4-wavelan-plugin-0.5.5.old/panel-plugin/wavelan.c 2009-10-09 14:42:54.427988584 +0200 ++++ xfce4-wavelan-plugin-0.5.5/panel-plugin/wavelan.c 2009-10-09 14:45:24.351280223 +0200 +@@ -199,6 +199,14 @@ + if ((wavelan->device = wi_open(wavelan->interface)) != NULL) { + /* register the update timer */ + TRACE ("Opened device"); ++ /* reduce the default tooltip timeout to be smaller than the update interval otherwise ++ * we won't see tooltips on GTK 2.16 or newer */ ++ GtkSettings *settings; ++ settings = gtk_settings_get_default(); ++ if (g_object_class_find_property(G_OBJECT_GET_CLASS(settings), "gtk-tooltip-timeout")) ++ g_object_set(settings, "gtk-tooltip-timeout", ++ 250 - 10, NULL); ++ + wavelan->timer_id = g_timeout_add(250, wavelan_timer, wavelan); + } + } + |