diff --git a/gtk/gtksizegroup.c b/gtk/gtksizegroup.c index 798b57133e..a0167ec064 100644 --- a/gtk/gtksizegroup.c +++ b/gtk/gtksizegroup.c @@ -206,37 +206,22 @@ _gtk_size_group_get_widget_peers (GtkWidget *for_widget, static void real_queue_resize (GtkWidget *widget) { - GtkWidget *container; - - _gtk_widget_set_alloc_needed (widget, TRUE); - _gtk_size_request_cache_clear (_gtk_widget_peek_request_cache (widget)); - - container = _gtk_widget_get_parent (widget); - if (!container && - _gtk_widget_is_toplevel (widget) && GTK_IS_CONTAINER (widget)) - container = widget; - - if (container) + do { - widget = container; + _gtk_widget_set_alloc_needed (widget, TRUE); + _gtk_size_request_cache_clear (_gtk_widget_peek_request_cache (widget)); - do + G_GNUC_BEGIN_IGNORE_DEPRECATIONS; + if (GTK_IS_RESIZE_CONTAINER (widget)) { - _gtk_widget_set_alloc_needed (widget, TRUE); - _gtk_size_request_cache_clear (_gtk_widget_peek_request_cache (widget)); - - G_GNUC_BEGIN_IGNORE_DEPRECATIONS; - if (GTK_IS_RESIZE_CONTAINER (widget)) - { - gtk_container_queue_resize_handler (GTK_CONTAINER (widget)); - break; - } - G_GNUC_END_IGNORE_DEPRECATIONS; - - widget = gtk_widget_get_parent (widget); + gtk_container_queue_resize_handler (GTK_CONTAINER (widget)); + break; } - while (widget); + G_GNUC_END_IGNORE_DEPRECATIONS; + + widget = gtk_widget_get_parent (widget); } + while (widget); } static void