elementary: Efl.Ui.Layout_Factory should not set the theme if there isn't any defined.

Reviewed-by: SangHyeon Jade Lee <sh10233.lee@samsung.com>
Differential Revision: https://phab.enlightenment.org/D9602
This commit is contained in:
Cedric BAIL 2019-08-16 11:50:24 -07:00
parent f6cdbc2d43
commit a473601ce7
1 changed files with 2 additions and 1 deletions

View File

@ -90,7 +90,8 @@ _efl_ui_layout_factory_bind(Eo *obj EINA_UNUSED, void *data, const Eina_Value va
static void
_efl_ui_layout_factory_efl_ui_factory_building(const Eo *obj, Efl_Ui_Layout_Factory_Data *pd, Efl_Gfx_Entity *ui_view)
{
efl_ui_layout_theme_set(ui_view, pd->klass, pd->group, pd->style);
if (pd->klass || pd->group || pd->style)
efl_ui_layout_theme_set(ui_view, pd->klass, pd->group, pd->style);
efl_ui_factory_building(efl_super(obj, EFL_UI_LAYOUT_FACTORY_CLASS), ui_view);
}