elm_map: Fix to support customized style for elm_map

Summary: Load a map theme with a style to support customized style

@fix

Reviewers: Hermet

Reviewed By: Hermet

CC: seoz

Differential Revision: https://phab.enlightenment.org/D845
This commit is contained in:
Jaehyun Cho 2014-05-12 13:44:03 +09:00 committed by ChunEon Park
parent d69b8b09dd
commit d0c95fe3af
1 changed files with 5 additions and 0 deletions

View File

@ -3806,10 +3806,15 @@ _elm_map_pan_class_constructor(Eo_Class *klass)
EOLIAN static Eina_Bool
_elm_map_elm_widget_theme_apply(Eo *obj, Elm_Map_Data *sd EINA_UNUSED)
{
ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd);
Eina_Bool int_ret = EINA_FALSE;
eo_do_super(obj, MY_CLASS, int_ret = elm_obj_widget_theme_apply());
if (!int_ret) return EINA_FALSE;
elm_widget_theme_object_set
(obj, wd->resize_obj, "map", "base", elm_widget_style_get(obj));
_sizing_eval(obj);
return EINA_TRUE;