ami pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=46d4df4962a723f12723a901b0d2ae2966ebb7ad
commit 46d4df4962a723f12723a901b0d2ae2966ebb7ad Author: Amitesh Singh <amitesh...@samsung.com> Date: Mon Aug 7 17:20:09 2017 +0900 Efl.Ui.Panes: add first and second as content aliases 'first' and 'second' are more meaningful than 'left'/'right' & 'up'/'down' names. refer T5359 --- src/lib/elementary/efl_ui_panes.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/elementary/efl_ui_panes.c b/src/lib/elementary/efl_ui_panes.c index 869b94c0d8..dde24ce678 100644 --- a/src/lib/elementary/efl_ui_panes.c +++ b/src/lib/elementary/efl_ui_panes.c @@ -37,10 +37,13 @@ static const Evas_Smart_Cb_Description _smart_callbacks[] = { static const Elm_Layout_Part_Alias_Description _content_aliases[] = { + //XXX: change elm.swallow.left/right to *.first/second in new theme. {"left", "elm.swallow.left"}, {"right", "elm.swallow.right"}, {"top", "elm.swallow.left"}, {"bottom", "elm.swallow.right"}, + {"first", "elm.swallow.left"}, + {"second", "elm.swallow.right"}, {NULL, NULL} }; --