win: Fix wrong return value of window theme apply.

@fix
This commit is contained in:
Daniel Juyung Seo 2014-12-16 00:40:39 +09:00
parent 29ba5cd8da
commit b97c0d5934
1 changed files with 1 additions and 1 deletions

View File

@ -4823,7 +4823,7 @@ _elm_win_elm_widget_theme_apply(Eo *obj, Elm_Win_Data *sd)
{
Eina_Bool int_ret = EINA_FALSE;
eo_do_super(obj, MY_CLASS, int_ret = elm_obj_widget_theme_apply());
if (!int_ret) return EINA_TRUE;
if (!int_ret) return EINA_FALSE;
sd->focus_highlight.theme_changed = EINA_TRUE;
_elm_win_focus_highlight_reconfigure_job_start(sd);