diff options
author | jacob berkman <jacob@ximian.com> | 2002-01-08 20:20:32 +0000 |
---|---|---|
committer | Jacob Berkman <jberkman@src.gnome.org> | 2002-01-08 20:20:32 +0000 |
commit | c4591330a25707d76be3bad79bcb68f78eb106f4 (patch) | |
tree | ad93c4b47ae3fee1ce15dc0439e0f7a81beba272 | |
parent | 74e88267938349fdb293c0d3d9222122e1cbc4d0 (diff) | |
download | gtk+-c4591330a25707d76be3bad79bcb68f78eb106f4.tar.gz |
queue a resize on
2002-01-08 jacob berkman <jacob@ximian.com>
* gtk/gtklayout.c (gtk_layout_move_internal): queue a resize on
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-0 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-2 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 5 | ||||
-rw-r--r-- | gtk/gtklayout.c | 2 |
8 files changed, 36 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2002-01-08 jacob berkman <jacob@ximian.com> + + * 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 <otaylor@redhat.com> * 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 <jacob@ximian.com> + + * 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 <otaylor@redhat.com> * 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 <jacob@ximian.com> + + * 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 <otaylor@redhat.com> * 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 <jacob@ximian.com> + + * 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 <otaylor@redhat.com> * 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 <jacob@ximian.com> + + * 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 <otaylor@redhat.com> * 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 <jacob@ximian.com> + + * 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 <otaylor@redhat.com> * 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 <jacob@ximian.com> + + * 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 <otaylor@redhat.com> * 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)); } /** |