seoz pushed a commit to branch elementary-1.12. http://git.enlightenment.org/core/elementary.git/commit/?id=64491def7e8ac1d560b4c3207c86c13184c5bcc2
commit 64491def7e8ac1d560b4c3207c86c13184c5bcc2 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 6d19710..c100343 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -4795,7 +4795,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); --
