discomfitor pushed a commit to branch enlightenment-0.19. http://git.enlightenment.org/core/enlightenment.git/commit/?id=9567acde42b8a18f27404fc0dbf1af00b9966780
commit 9567acde42b8a18f27404fc0dbf1af00b9966780 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Wed Feb 18 16:35:10 2015 -0500 don't send unfocused signal to override clients fix T2099 --- src/bin/e_comp_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 337d139..344f2f4 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -566,7 +566,7 @@ _e_comp_object_shadow_setup(E_Comp_Object *cw) _e_comp_object_shadow(cw); } - if (focus || cw->ec->focused) + if (focus || cw->ec->focused || cw->ec->override) e_comp_object_signal_emit(cw->smart_obj, "e,state,focused", "e"); else e_comp_object_signal_emit(cw->smart_obj, "e,state,unfocused", "e"); --