mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 01:40:10 +00:00
Removed needless size-requesting of children (child sizes are ignored at request time).
This commit is contained in:
parent
2e98e37fe4
commit
c1e9f4a798
@ -975,24 +975,8 @@ static void
|
|||||||
gtk_layout_size_request (GtkWidget *widget,
|
gtk_layout_size_request (GtkWidget *widget,
|
||||||
GtkRequisition *requisition)
|
GtkRequisition *requisition)
|
||||||
{
|
{
|
||||||
GtkLayout *layout = GTK_LAYOUT (widget);
|
|
||||||
GtkLayoutPrivate *priv = layout->priv;
|
|
||||||
GList *tmp_list;
|
|
||||||
|
|
||||||
requisition->width = 0;
|
requisition->width = 0;
|
||||||
requisition->height = 0;
|
requisition->height = 0;
|
||||||
|
|
||||||
tmp_list = priv->children;
|
|
||||||
|
|
||||||
while (tmp_list)
|
|
||||||
{
|
|
||||||
GtkLayoutChild *child = tmp_list->data;
|
|
||||||
GtkRequisition child_requisition;
|
|
||||||
|
|
||||||
tmp_list = tmp_list->next;
|
|
||||||
|
|
||||||
gtk_widget_get_preferred_size (child->widget, &child_requisition, NULL);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user