gtkbox: fix positioning of center widget

This commit is contained in:
Paolo Borelli 2014-02-17 23:19:10 +01:00
parent ae4abbcb9d
commit ad9019c2c9

View File

@ -1137,7 +1137,11 @@ gtk_box_size_allocate_with_center (GtkWidget *widget,
}
/* Allocate the center widget */
center_pos = (box_size - center_size) / 2;
if (priv->orientation == GTK_ORIENTATION_HORIZONTAL)
center_pos = allocation->x + (box_size - center_size) / 2;
else
center_pos = allocation->y + (box_size - center_size) / 2;
if (center_pos < side[GTK_PACK_START])
center_pos = side[GTK_PACK_START];
else if (center_pos + center_size > side[GTK_PACK_END])