grid-layout: Use correct orientation when requesting preferred child size

Otherwise width and height are swapped.

https://bugzilla.gnome.org/show_bug.cgi?id=725722
This commit is contained in:
Bastian Winkler 2014-03-11 12:35:03 +01:00
parent 65c7c4bcb6
commit 70835c904a
1 changed files with 1 additions and 1 deletions

View File

@ -510,7 +510,7 @@ compute_request_for_child (ClutterGridRequest *request,
}
else
{
if (orientation == CLUTTER_ORIENTATION_VERTICAL)
if (orientation == CLUTTER_ORIENTATION_HORIZONTAL)
clutter_actor_get_preferred_width (child, -1, minimum, natural);
else
clutter_actor_get_preferred_height (child, -1, minimum, natural);