Added missing EVAS_BIDI_DIRECTION_NEUTRAL 64/93364/1
authorJi-hoon Lee <dalton.lee@samsung.com>
Mon, 24 Oct 2016 02:19:58 +0000 (11:19 +0900)
committerJi-hoon Lee <dalton.lee@samsung.com>
Mon, 24 Oct 2016 02:19:58 +0000 (11:19 +0900)
Change-Id: I9e727f3af162c2f67653dad664542c6c36dcaa96

src/option.cpp

index c095312..0f5d564 100644 (file)
@@ -802,6 +802,7 @@ Evas_Object* create_option_main_view(Evas_Object *parent, Evas_Object *naviframe
 
         Elm_Object_Item *item = NULL;
         genlist = elm_genlist_add(naviframe);
+        evas_object_paragraph_direction_set(genlist, EVAS_BIDI_DIRECTION_NEUTRAL);
         option_elements[type].genlist = genlist;
 
 #ifdef _CIRCLE
@@ -1016,6 +1017,7 @@ static Evas_Object* create_smart_typing_view(Evas_Object *naviframe)
     Evas_Object *genlist = elm_genlist_add(naviframe);
     elm_genlist_mode_set(genlist, ELM_LIST_COMPRESS);
     elm_genlist_homogeneous_set(genlist, EINA_TRUE);
+    evas_object_paragraph_direction_set(genlist, EVAS_BIDI_DIRECTION_NEUTRAL);
 
     SCLOptionWindowType type = find_option_window_type(naviframe);
 
@@ -1068,6 +1070,7 @@ static Evas_Object* create_feedback_view(Evas_Object *naviframe)
     Evas_Object *genlist = elm_genlist_add(naviframe);
     elm_genlist_mode_set(genlist, ELM_LIST_COMPRESS);
     elm_genlist_homogeneous_set(genlist, EINA_TRUE);
+    evas_object_paragraph_direction_set(genlist, EVAS_BIDI_DIRECTION_NEUTRAL);
 
     SCLOptionWindowType type = find_option_window_type(naviframe);