diff --git a/ChangeLog b/ChangeLog index b8c63e0f18..26490977c5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-01-08 jacob berkman + + * gtk/gtklayout.c (gtk_layout_move_internal): queue a resize on + the child rather than the layout. see bug #68263 + Tue Jan 8 14:51:19 2002 Owen Taylor * gtk/gtkpaned.c (gtk_paned_expose): Don't draw diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index b8c63e0f18..26490977c5 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,8 @@ +2002-01-08 jacob berkman + + * gtk/gtklayout.c (gtk_layout_move_internal): queue a resize on + the child rather than the layout. see bug #68263 + Tue Jan 8 14:51:19 2002 Owen Taylor * gtk/gtkpaned.c (gtk_paned_expose): Don't draw diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index b8c63e0f18..26490977c5 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2002-01-08 jacob berkman + + * gtk/gtklayout.c (gtk_layout_move_internal): queue a resize on + the child rather than the layout. see bug #68263 + Tue Jan 8 14:51:19 2002 Owen Taylor * gtk/gtkpaned.c (gtk_paned_expose): Don't draw diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index b8c63e0f18..26490977c5 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +2002-01-08 jacob berkman + + * gtk/gtklayout.c (gtk_layout_move_internal): queue a resize on + the child rather than the layout. see bug #68263 + Tue Jan 8 14:51:19 2002 Owen Taylor * gtk/gtkpaned.c (gtk_paned_expose): Don't draw diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index b8c63e0f18..26490977c5 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2002-01-08 jacob berkman + + * gtk/gtklayout.c (gtk_layout_move_internal): queue a resize on + the child rather than the layout. see bug #68263 + Tue Jan 8 14:51:19 2002 Owen Taylor * gtk/gtkpaned.c (gtk_paned_expose): Don't draw diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index b8c63e0f18..26490977c5 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2002-01-08 jacob berkman + + * gtk/gtklayout.c (gtk_layout_move_internal): queue a resize on + the child rather than the layout. see bug #68263 + Tue Jan 8 14:51:19 2002 Owen Taylor * gtk/gtkpaned.c (gtk_paned_expose): Don't draw diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index b8c63e0f18..26490977c5 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2002-01-08 jacob berkman + + * gtk/gtklayout.c (gtk_layout_move_internal): queue a resize on + the child rather than the layout. see bug #68263 + Tue Jan 8 14:51:19 2002 Owen Taylor * gtk/gtkpaned.c (gtk_paned_expose): Don't draw diff --git a/gtk/gtklayout.c b/gtk/gtklayout.c index 38438a0a89..5e8363ffdc 100644 --- a/gtk/gtklayout.c +++ b/gtk/gtklayout.c @@ -374,7 +374,7 @@ gtk_layout_move_internal (GtkLayout *layout, gtk_widget_thaw_child_notify (widget); if (GTK_WIDGET_VISIBLE (widget) && GTK_WIDGET_VISIBLE (layout)) - gtk_widget_queue_resize (GTK_WIDGET (layout)); + gtk_widget_queue_resize (GTK_WIDGET (widget)); } /**