elm key events/disabling/focus - fix after another disabled widget fix

this fixes key events in rage again after
ea2b5e4048 broke them. this fixes T4285
This commit is contained in:
Carsten Haitzler 2016-08-04 16:34:40 +09:00
parent 77d2e0cb95
commit fa4a72d3fc
1 changed files with 2 additions and 1 deletions

View File

@ -1024,7 +1024,8 @@ EOLIAN static Elm_Theme_Apply
_elm_widget_theme_apply(Eo *obj, Elm_Widget_Smart_Data *_pd EINA_UNUSED)
{
_elm_widget_mirrored_reload(obj);
elm_widget_disabled_internal(obj, elm_widget_disabled_get(obj));
if (elm_widget_disabled_get(obj))
elm_widget_disabled_set(obj, elm_widget_disabled_get(obj));
return ELM_THEME_APPLY_SUCCESS;
}