seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=240636e19ccaa7e7ee4a4e007a9c1ff60c30fd7e
commit 240636e19ccaa7e7ee4a4e007a9c1ff60c30fd7e Author: Daniel Juyung Seo <[email protected]> Date: Tue Dec 16 00:40:39 2014 +0900 win: Fix wrong return value of window theme apply. @fix --- src/lib/elm_win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index 0caa120..90767b6 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -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); --
