summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2016-06-02 18:32:47 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2016-06-03 15:29:01 +0900
commit5fd02a79cc7e0fcc934b784a747a1aca4436bc08 (patch)
treed1f62e47bca6bb6bd67989be4784b1d984d60836
parent8f82e933683f671d881fd41662932657ea105e40 (diff)
downloadefl-5fd02a79cc7e0fcc934b784a747a1aca4436bc08.tar.gz
Efl.Ui.Box: Fix direction set
VERTICAL means UP but UP was ignored...
-rw-r--r--src/lib/elementary/efl_ui_box.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elementary/efl_ui_box.c b/src/lib/elementary/efl_ui_box.c
index 9f8291f285..fe30fe07dc 100644
--- a/src/lib/elementary/efl_ui_box.c
+++ b/src/lib/elementary/efl_ui_box.c
@@ -567,13 +567,13 @@ _efl_ui_box_efl_pack_linear_pack_direction_set(Eo *obj, Efl_Ui_Box_Data *pd, Efl
{
switch (dir)
{
- //case EFL_ORIENT_UP:
+ case EFL_ORIENT_UP:
case EFL_ORIENT_DOWN:
pd->orient = EFL_ORIENT_DOWN;
break;
case EFL_ORIENT_RIGHT:
- //case EFL_ORIENT_LEFT:
+ case EFL_ORIENT_LEFT:
default:
pd->orient = EFL_ORIENT_RIGHT;
break;