{
sdc->paragraph_direction = evas_object_paragraph_direction_get(obj);
_elm_widget_evas_object_paragraph_direction_set_internal(sobj, sdc, sdc->paragraph_direction);
+ eo_do_super(sobj, MY_CLASS, evas_obj_paragraph_direction_set(sdc->paragraph_direction));
}
/* END */
}
{
sdc->paragraph_direction = EVAS_BIDI_DIRECTION_NEUTRAL;
_elm_widget_evas_object_paragraph_direction_set_internal(sobj, sdc, sdc->paragraph_direction);
+ eo_do_super(sobj, MY_CLASS, evas_obj_paragraph_direction_set(EVAS_BIDI_DIRECTION_NEUTRAL));
}
/* END */
}
/* END */
eo_do(obj, elm_interface_atspi_accessible_role_set(ELM_ATSPI_ROLE_UNKNOWN));
+
+ /* TIZEN_ONLY(20161117): Inherit paragraph direction from widget parent */
+ if (sd->paragraph_direction != evas_object_paragraph_direction_get(parent))
+ {
+ sd->paragraph_direction = evas_object_paragraph_direction_get(parent);
+ _elm_widget_evas_object_paragraph_direction_set_internal(obj, sd, sd->paragraph_direction);
+ eo_do_super(obj, MY_CLASS, evas_obj_paragraph_direction_set(sd->paragraph_direction));
+ }
+ /* END */
+
return obj;
}