widget: Stop propagating alloc_needed beyond popovers

This should not be necessary, since popovers get
their new size from present_popup via the compositor.
This commit is contained in:
Matthias Clasen
2023-03-08 13:13:15 -05:00
parent 7a3e130efd
commit a2d14632de

View File

@@ -10660,7 +10660,10 @@ gtk_widget_set_alloc_needed (GtkWidget *widget)
break;
if (GTK_IS_NATIVE (widget))
gtk_native_queue_relayout (GTK_NATIVE (widget));
{
gtk_native_queue_relayout (GTK_NATIVE (widget));
return;
}
widget = priv->parent;
if (widget == NULL)