diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-11-28 14:17:06 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-11-28 14:17:06 +0000 |
commit | 6be42231b834b00297e490d7ca3b04cb0e266902 (patch) | |
tree | 22f13c5a2fd8bf02d1b79c96e1d3bd4654563204 /gtk/gtktooltips.c | |
parent | 9228dcee29503f00c13f7379f0410e510c6a589b (diff) | |
download | gtk+-6be42231b834b00297e490d7ca3b04cb0e266902.tar.gz |
Set timer_tag to 0 when the timeout is done. (#322291, Jean-Yves Lefort)
2005-11-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktooltips.c (gtk_tooltips_timeout): Set timer_tag to 0 when
the timeout is done. (#322291, Jean-Yves Lefort)
Diffstat (limited to 'gtk/gtktooltips.c')
-rw-r--r-- | gtk/gtktooltips.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtktooltips.c b/gtk/gtktooltips.c index 3c720c5e4d..7fdf526c74 100644 --- a/gtk/gtktooltips.c +++ b/gtk/gtktooltips.c @@ -481,6 +481,8 @@ gtk_tooltips_timeout (gpointer data) GTK_WIDGET_DRAWABLE (tooltips->active_tips_data->widget)) gtk_tooltips_draw_tips (tooltips); + tooltips->timer_tag = 0; + GDK_THREADS_LEAVE (); return FALSE; |