mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
don't ignore realized but visible && !mapped resize containers (which is
Wed Jan 2 23:09:06 2002 Tim Janik <timj@gtk.org> * gtk/gtkcontainer.c (_gtk_container_queue_resize): don't ignore realized but visible && !mapped resize containers (which is possible with unset CHILD_VISIBLE now).
This commit is contained in:
parent
11ae67f9eb
commit
bc879373a2
@ -1,3 +1,9 @@
|
||||
Wed Jan 2 23:09:06 2002 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtkcontainer.c (_gtk_container_queue_resize): don't ignore
|
||||
realized but visible && !mapped resize containers (which is
|
||||
possible with unset CHILD_VISIBLE now).
|
||||
|
||||
2002-01-02 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/Makefile.am (LDFLAGS): automake still doesn't support
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Jan 2 23:09:06 2002 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtkcontainer.c (_gtk_container_queue_resize): don't ignore
|
||||
realized but visible && !mapped resize containers (which is
|
||||
possible with unset CHILD_VISIBLE now).
|
||||
|
||||
2002-01-02 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/Makefile.am (LDFLAGS): automake still doesn't support
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Jan 2 23:09:06 2002 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtkcontainer.c (_gtk_container_queue_resize): don't ignore
|
||||
realized but visible && !mapped resize containers (which is
|
||||
possible with unset CHILD_VISIBLE now).
|
||||
|
||||
2002-01-02 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/Makefile.am (LDFLAGS): automake still doesn't support
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Jan 2 23:09:06 2002 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtkcontainer.c (_gtk_container_queue_resize): don't ignore
|
||||
realized but visible && !mapped resize containers (which is
|
||||
possible with unset CHILD_VISIBLE now).
|
||||
|
||||
2002-01-02 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/Makefile.am (LDFLAGS): automake still doesn't support
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Jan 2 23:09:06 2002 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtkcontainer.c (_gtk_container_queue_resize): don't ignore
|
||||
realized but visible && !mapped resize containers (which is
|
||||
possible with unset CHILD_VISIBLE now).
|
||||
|
||||
2002-01-02 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/Makefile.am (LDFLAGS): automake still doesn't support
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Jan 2 23:09:06 2002 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtkcontainer.c (_gtk_container_queue_resize): don't ignore
|
||||
realized but visible && !mapped resize containers (which is
|
||||
possible with unset CHILD_VISIBLE now).
|
||||
|
||||
2002-01-02 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/Makefile.am (LDFLAGS): automake still doesn't support
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Jan 2 23:09:06 2002 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtkcontainer.c (_gtk_container_queue_resize): don't ignore
|
||||
realized but visible && !mapped resize containers (which is
|
||||
possible with unset CHILD_VISIBLE now).
|
||||
|
||||
2002-01-02 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/Makefile.am (LDFLAGS): automake still doesn't support
|
||||
|
@ -1056,7 +1056,7 @@ _gtk_container_queue_resize (GtkContainer *container)
|
||||
}
|
||||
|
||||
if (GTK_WIDGET_VISIBLE (resize_container) &&
|
||||
(GTK_WIDGET_TOPLEVEL (resize_container) || GTK_WIDGET_DRAWABLE (resize_container)))
|
||||
(GTK_WIDGET_TOPLEVEL (resize_container) || GTK_WIDGET_REALIZED (resize_container)))
|
||||
{
|
||||
switch (resize_container->resize_mode)
|
||||
{
|
||||
@ -1077,7 +1077,7 @@ _gtk_container_queue_resize (GtkContainer *container)
|
||||
break;
|
||||
|
||||
case GTK_RESIZE_PARENT:
|
||||
/* Ignore, should not be reached */
|
||||
g_assert_not_reached ();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user