diff --git a/ChangeLog b/ChangeLog index 08e37ed8c7..c51a244d14 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-11-28 Matthias Clasen + * gtk/gtktooltips.c (gtk_tooltips_timeout): Set timer_tag to 0 when + the timeout is done. (#322291, Jean-Yves Lefort) + * gtk/gtkfilechooserdefault.c (shortcuts_key_press_event_cb): Make F2 work for renaming bookmarks. (#320822, Jaap A. Haitsma, patch by Paolo Borelli) @@ -95,7 +98,7 @@ * gtk/gtkcombobox.c (gtk_combo_box_set_active_internal): Emit notify::active. -2005-11-18 Matthias Clasen +2005-11-18 Matthias Clasen Fix crashes in connection with pathbar scrolling (#321560, Bogdan Nicula) @@ -104,7 +107,7 @@ Stop scrolling when desensitising slider buttons. (gtk_path_bar_scroll_timeout, gtk_path_bar_slider_button_press): And use it here. - +Jean-Yves Lefort * gtk/gtkpathbar.h (struct _GtkPathBar): Add a separate scrolling_down flag. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 08e37ed8c7..c51a244d14 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,8 @@ 2005-11-28 Matthias Clasen + * gtk/gtktooltips.c (gtk_tooltips_timeout): Set timer_tag to 0 when + the timeout is done. (#322291, Jean-Yves Lefort) + * gtk/gtkfilechooserdefault.c (shortcuts_key_press_event_cb): Make F2 work for renaming bookmarks. (#320822, Jaap A. Haitsma, patch by Paolo Borelli) @@ -95,7 +98,7 @@ * gtk/gtkcombobox.c (gtk_combo_box_set_active_internal): Emit notify::active. -2005-11-18 Matthias Clasen +2005-11-18 Matthias Clasen Fix crashes in connection with pathbar scrolling (#321560, Bogdan Nicula) @@ -104,7 +107,7 @@ Stop scrolling when desensitising slider buttons. (gtk_path_bar_scroll_timeout, gtk_path_bar_slider_button_press): And use it here. - +Jean-Yves Lefort * gtk/gtkpathbar.h (struct _GtkPathBar): Add a separate scrolling_down flag. diff --git a/gtk/gtktooltips.c b/gtk/gtktooltips.c index b63f255755..c3cd22051e 100644 --- a/gtk/gtktooltips.c +++ b/gtk/gtktooltips.c @@ -482,6 +482,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;