queue a resize on

2002-01-08  jacob berkman  <jacob@ximian.com>

	* gtk/gtklayout.c (gtk_layout_move_internal): queue a resize on
This commit is contained in:
jacob berkman 2002-01-08 20:20:32 +00:00 committed by Jacob Berkman
parent 74e8826793
commit c4591330a2
8 changed files with 36 additions and 1 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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));
}
/**