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
This commit is contained in:
Marcel Hollerbach 2019-09-05 14:06:15 +02:00
parent 389dbd2524
commit 7024e6f03f
3 changed files with 3 additions and 3 deletions

View File

@ -207,6 +207,6 @@ collections {
#include "edc/efl/tab_pager.edc"
#include "edc/efl/tab_bar.edc"
#include "edc/efl/tab_page.edc"
#include "edc/efl/item_container.edc"
#include "edc/efl/collection.edc"
#include "edc/efl/group_item.edc"
}

View File

@ -1,3 +1,3 @@
group { "efl/item_container";
group { "efl/collection";
inherit: "efl/scroller";
}

View File

@ -366,7 +366,7 @@ _efl_ui_collection_efl_object_constructor(Eo *obj, Efl_Ui_Collection_Data *pd EI
_fast_accessor_init(&pd->size_accessor, &pd->items);
if (!elm_widget_theme_klass_get(obj))
elm_widget_theme_klass_set(obj, "item_container");
elm_widget_theme_klass_set(obj, "collection");
o = efl_constructor(efl_super(obj, MY_CLASS));