diff options
author | Benjamin Otte <otte@redhat.com> | 2017-11-05 14:46:01 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2017-11-05 14:46:01 +0100 |
commit | c4ecc0993afd18848c213b02d7bae77233b87d7c (patch) | |
tree | 7044f2a23da9e63c33d0b0ce38087664c4c64cb0 /gtk/gtkflowbox.c | |
parent | 73077c4e904675be56b0b7c2e0f6ad4ebec3c3e6 (diff) | |
download | gtk+-c4ecc0993afd18848c213b02d7bae77233b87d7c.tar.gz |
flowbox: Don't call get_allocation()
That's wome outdated workaround code from the last version of GTK3.
Diffstat (limited to 'gtk/gtkflowbox.c')
-rw-r--r-- | gtk/gtkflowbox.c | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/gtk/gtkflowbox.c b/gtk/gtkflowbox.c index e4a4b22680..cdd4cb8756 100644 --- a/gtk/gtkflowbox.c +++ b/gtk/gtkflowbox.c @@ -1389,7 +1389,6 @@ gtk_flow_box_size_allocate (GtkWidget *widget, GtkFlowBox *box = GTK_FLOW_BOX (widget); GtkFlowBoxPrivate *priv = BOX_PRIV (box); GdkRectangle child_clip; - GtkAllocation widget_allocation; GtkAllocation child_allocation; gint avail_size, avail_other_size, min_items, item_spacing, line_spacing; GtkAlign item_align; @@ -1406,8 +1405,6 @@ gtk_flow_box_size_allocate (GtkWidget *widget, gint i, this_line_size; GSequenceIter *iter; - gtk_widget_get_allocation (widget, &widget_allocation); - min_items = MAX (1, priv->min_children_per_line); if (priv->orientation == GTK_ORIENTATION_HORIZONTAL) @@ -1584,16 +1581,9 @@ gtk_flow_box_size_allocate (GtkWidget *widget, extra_line_extra = extra_line_pixels % n_lines; } - /* - * Prepare item/line initial offsets and jump into the - * real allocation loop. - */ - line_offset = allocation->y - widget_allocation.y; - item_offset = allocation->x - widget_allocation.x; - /* prepend extra space to item_offset/line_offset for SPREAD_END */ - item_offset += get_offset_pixels (item_align, extra_pixels); - line_offset += get_offset_pixels (line_align, extra_line_pixels); + item_offset = get_offset_pixels (item_align, extra_pixels); + line_offset = get_offset_pixels (line_align, extra_line_pixels); /* Get the allocation size for the first line */ if (priv->homogeneous) @@ -1653,7 +1643,7 @@ gtk_flow_box_size_allocate (GtkWidget *widget, } } - item_offset = allocation->x - widget_allocation.x; + item_offset = 0; if (item_align == GTK_ALIGN_CENTER) { @@ -1712,15 +1702,15 @@ gtk_flow_box_size_allocate (GtkWidget *widget, /* Do the actual allocation */ if (priv->orientation == GTK_ORIENTATION_HORIZONTAL) { - child_allocation.x = widget_allocation.x + item_offset; - child_allocation.y = widget_allocation.y + line_offset; + child_allocation.x = item_offset; + child_allocation.y = line_offset; child_allocation.width = this_item_size; child_allocation.height = this_line_size; } else /* GTK_ORIENTATION_VERTICAL */ { - child_allocation.x = widget_allocation.x + line_offset; - child_allocation.y = widget_allocation.y + item_offset; + child_allocation.x = line_offset; + child_allocation.y = item_offset; child_allocation.width = this_line_size; child_allocation.height = this_item_size; } |