[clutter] grid-layout: Fix attach position for horizontal orientation
- From: Bastian Winkler <bwinkler src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [clutter] grid-layout: Fix attach position for horizontal orientation
- Date: Tue, 12 Jun 2012 21:51:11 +0000 (UTC)
commit 7c8f761d43f17b2dafa9be930fc5d6409fc5ee0a
Author: Bastian Winkler <buz netbuz org>
Date: Mon Jun 11 17:17:46 2012 +0200
grid-layout: Fix attach position for horizontal orientation
Switch the attach position. A new child should be positioned right of
it's previous sibling in ltr mode.
clutter/clutter-grid-layout.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/clutter/clutter-grid-layout.c b/clutter/clutter-grid-layout.c
index 63752aa..c482af7 100644
--- a/clutter/clutter-grid-layout.c
+++ b/clutter/clutter-grid-layout.c
@@ -360,7 +360,7 @@ clutter_grid_request_update_child_attach (ClutterGridRequest *request,
td = clutter_actor_get_text_direction (container);
rtl = (td == CLUTTER_TEXT_DIRECTION_RTL) ? TRUE : FALSE;
- side = rtl ? CLUTTER_GRID_POSITION_RIGHT : CLUTTER_GRID_POSITION_LEFT;
+ side = rtl ? CLUTTER_GRID_POSITION_LEFT : CLUTTER_GRID_POSITION_RIGHT;
}
else
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]