diff --git a/ChangeLog b/ChangeLog index ae34828f2f..19cab17482 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Nov 11 11:34:32 2004 Jonathan Blandford + + * gtk/gtkfilechooserbutton.c (update_idler): return FALSE instead + of TRUE. This is just a quick fix to prevent the idle from + looping indefinitely. + 2004-11-11 J. Ali Harlow * gdk/Makefile.am: diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index ae34828f2f..19cab17482 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Thu Nov 11 11:34:32 2004 Jonathan Blandford + + * gtk/gtkfilechooserbutton.c (update_idler): return FALSE instead + of TRUE. This is just a quick fix to prevent the idle from + looping indefinitely. + 2004-11-11 J. Ali Harlow * gdk/Makefile.am: diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index ae34828f2f..19cab17482 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Thu Nov 11 11:34:32 2004 Jonathan Blandford + + * gtk/gtkfilechooserbutton.c (update_idler): return FALSE instead + of TRUE. This is just a quick fix to prevent the idle from + looping indefinitely. + 2004-11-11 J. Ali Harlow * gdk/Makefile.am: diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index ae34828f2f..19cab17482 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Thu Nov 11 11:34:32 2004 Jonathan Blandford + + * gtk/gtkfilechooserbutton.c (update_idler): return FALSE instead + of TRUE. This is just a quick fix to prevent the idle from + looping indefinitely. + 2004-11-11 J. Ali Harlow * gdk/Makefile.am: diff --git a/gtk/gtkfilechooserbutton.c b/gtk/gtkfilechooserbutton.c index 8105c82efe..98cb1a851e 100644 --- a/gtk/gtkfilechooserbutton.c +++ b/gtk/gtkfilechooserbutton.c @@ -1694,7 +1694,7 @@ update_idler (gpointer user_data) retval = FALSE; } else - retval = TRUE; + retval = FALSE; GDK_THREADS_LEAVE ();