mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Fixes #132929.
2004-01-30 Not Zed <NotZed@Ximian.com> Fixes #132929. * gtk/gtktreeview.c (cancel_arrow_animation): remove the timeout handler when we clear the timeout id.
This commit is contained in:
parent
275cf046cf
commit
ca644c4107
@ -1,3 +1,10 @@
|
||||
2004-01-30 Not Zed <NotZed@Ximian.com>
|
||||
|
||||
Fixes #132929.
|
||||
|
||||
* gtk/gtktreeview.c (cancel_arrow_animation): remove the timeout
|
||||
handler when we clear the timeout id.
|
||||
|
||||
2004-01-30 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fix #129872, based on a patch by Jan Arne Petersen
|
||||
|
@ -1,3 +1,10 @@
|
||||
2004-01-30 Not Zed <NotZed@Ximian.com>
|
||||
|
||||
Fixes #132929.
|
||||
|
||||
* gtk/gtktreeview.c (cancel_arrow_animation): remove the timeout
|
||||
handler when we clear the timeout id.
|
||||
|
||||
2004-01-30 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fix #129872, based on a patch by Jan Arne Petersen
|
||||
|
@ -1,3 +1,10 @@
|
||||
2004-01-30 Not Zed <NotZed@Ximian.com>
|
||||
|
||||
Fixes #132929.
|
||||
|
||||
* gtk/gtktreeview.c (cancel_arrow_animation): remove the timeout
|
||||
handler when we clear the timeout id.
|
||||
|
||||
2004-01-30 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fix #129872, based on a patch by Jan Arne Petersen
|
||||
|
@ -1,3 +1,10 @@
|
||||
2004-01-30 Not Zed <NotZed@Ximian.com>
|
||||
|
||||
Fixes #132929.
|
||||
|
||||
* gtk/gtktreeview.c (cancel_arrow_animation): remove the timeout
|
||||
handler when we clear the timeout id.
|
||||
|
||||
2004-01-30 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fix #129872, based on a patch by Jan Arne Petersen
|
||||
|
@ -1,3 +1,10 @@
|
||||
2004-01-30 Not Zed <NotZed@Ximian.com>
|
||||
|
||||
Fixes #132929.
|
||||
|
||||
* gtk/gtktreeview.c (cancel_arrow_animation): remove the timeout
|
||||
handler when we clear the timeout id.
|
||||
|
||||
2004-01-30 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fix #129872, based on a patch by Jan Arne Petersen
|
||||
|
@ -6891,8 +6891,12 @@ static void
|
||||
cancel_arrow_animation (GtkTreeView *tree_view)
|
||||
{
|
||||
if (tree_view->priv->expand_collapse_timeout)
|
||||
while (do_expand_collapse (tree_view));
|
||||
tree_view->priv->expand_collapse_timeout = 0;
|
||||
{
|
||||
while (do_expand_collapse (tree_view));
|
||||
|
||||
g_source_remove (tree_view->priv->expand_collapse_timeout);
|
||||
tree_view->priv->expand_collapse_timeout = 0;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user