diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-09-05 14:06:15 +0200 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-09-10 09:10:11 +0200 |
commit | 7024e6f03f89f44057c4513a947be728b064d453 (patch) | |
tree | a534ee1260b5e258f789643016582b887984248f | |
parent | 389dbd2524899db5575b524ebb442e6b7a88b2d2 (diff) |
efl_ui_collection: update theme name
item_container was the wrong name here. this fixes this to use the
correct name in the theme. Additionally the file name in the file is
adjusted.
Reviewed-by: SangHyeon Jade Lee <sh10233.lee@samsung.com>
Differential Revision: https://phab.enlightenment.org/D9849
-rw-r--r-- | data/elementary/themes/default.edc | 2 | ||||
-rw-r--r-- | data/elementary/themes/edc/efl/collection.edc (renamed from data/elementary/themes/edc/efl/item_container.edc) | 2 | ||||
-rw-r--r-- | src/lib/elementary/efl_ui_collection.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/data/elementary/themes/default.edc b/data/elementary/themes/default.edc index 2d73fb2685..26c0270ab2 100644 --- a/data/elementary/themes/default.edc +++ b/data/elementary/themes/default.edc | |||
@@ -207,6 +207,6 @@ collections { | |||
207 | #include "edc/efl/tab_pager.edc" | 207 | #include "edc/efl/tab_pager.edc" |
208 | #include "edc/efl/tab_bar.edc" | 208 | #include "edc/efl/tab_bar.edc" |
209 | #include "edc/efl/tab_page.edc" | 209 | #include "edc/efl/tab_page.edc" |
210 | #include "edc/efl/item_container.edc" | 210 | #include "edc/efl/collection.edc" |
211 | #include "edc/efl/group_item.edc" | 211 | #include "edc/efl/group_item.edc" |
212 | } | 212 | } |
diff --git a/data/elementary/themes/edc/efl/item_container.edc b/data/elementary/themes/edc/efl/collection.edc index 9980349612..d74981dbb2 100644 --- a/data/elementary/themes/edc/efl/item_container.edc +++ b/data/elementary/themes/edc/efl/collection.edc | |||
@@ -1,3 +1,3 @@ | |||
1 | group { "efl/item_container"; | 1 | group { "efl/collection"; |
2 | inherit: "efl/scroller"; | 2 | inherit: "efl/scroller"; |
3 | } | 3 | } |
diff --git a/src/lib/elementary/efl_ui_collection.c b/src/lib/elementary/efl_ui_collection.c index 2922c4b7cb..32811bc001 100644 --- a/src/lib/elementary/efl_ui_collection.c +++ b/src/lib/elementary/efl_ui_collection.c | |||
@@ -366,7 +366,7 @@ _efl_ui_collection_efl_object_constructor(Eo *obj, Efl_Ui_Collection_Data *pd EI | |||
366 | _fast_accessor_init(&pd->size_accessor, &pd->items); | 366 | _fast_accessor_init(&pd->size_accessor, &pd->items); |
367 | 367 | ||
368 | if (!elm_widget_theme_klass_get(obj)) | 368 | if (!elm_widget_theme_klass_get(obj)) |
369 | elm_widget_theme_klass_set(obj, "item_container"); | 369 | elm_widget_theme_klass_set(obj, "collection"); |
370 | 370 | ||
371 | o = efl_constructor(efl_super(obj, MY_CLASS)); | 371 | o = efl_constructor(efl_super(obj, MY_CLASS)); |
372 | 372 | ||