summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmitesh Singh <amitesh.sh@samsung.com>2017-08-07 17:20:09 +0900
committerAmitesh Singh <amitesh.sh@samsung.com>2017-08-09 10:50:20 +0900
commitef072d275cd9be5caf583c10552235c943682151 (patch)
treee48fa68f2e61d87135c308d38c32fa16355d4788
parent40945d985967e58d6e6c00ecfd6292a8d67b83b5 (diff)
downloadefl-ef072d275cd9be5caf583c10552235c943682151.tar.gz
Efl.Ui.Panes: add first and second as content aliases
'first' and 'second' are more meaningful than 'left'/'right' & 'up'/'down' names. refer T5359
-rw-r--r--src/lib/elementary/efl_ui_panes.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/elementary/efl_ui_panes.c b/src/lib/elementary/efl_ui_panes.c
index 4149d87a06..f4ca1d3f1b 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}
};