diff --git a/ChangeLog b/ChangeLog index 763978c2ae..f3323596dd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2008-02-05 Cody Russell + + Merge from trunk: + + * gtk/gtkpaned.c (gtk_paned_set_position): + Change queue_resize() to queue_draw(), and add a check for + child2 != NULL in case someone calls this before there is + a child packed in there. (#144269 again) + 2008-02-05 Cody Russell * gdk/win32/gdkevents-win32.c diff --git a/gtk/gtkpaned.c b/gtk/gtkpaned.c index eafe09dbaa..b925c076a2 100644 --- a/gtk/gtkpaned.c +++ b/gtk/gtkpaned.c @@ -1156,7 +1156,7 @@ gtk_paned_set_position (GtkPaned *paned, #ifdef G_OS_WIN32 /* Hacky work-around for bug #144269 */ - gtk_widget_queue_resize (paned->child2); + gtk_widget_queue_draw (paned->child2); #endif }