discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=07ed7a1433e1ff3ecdaea65d06c73452a9352fa1
commit 07ed7a1433e1ff3ecdaea65d06c73452a9352fa1 Author: Mike Blumenkrantz <[email protected]> Date: Wed Jun 1 13:07:45 2016 -0400 force mouse-in again during comp ungrab if client previously had mouse-in unfocus performs a mouse-out, so this is necessary in order to allow events to reach the client again after a grab ends --- src/bin/e_comp.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c index 4247099..7fc6a2b 100644 --- a/src/bin/e_comp.c +++ b/src/bin/e_comp.c @@ -1701,8 +1701,15 @@ e_comp_ungrab_input(Eina_Bool mouse, Eina_Bool kbd) if (e_comp->comp_type == E_PIXMAP_TYPE_WL) { + Eina_Bool mouse_in = ec->mouse.in; + int x, y; + + x = ec->mouse.current.mx; + y = ec->mouse.current.my; evas_object_focus_set(ec->frame, 0); evas_object_focus_set(ec->frame, 1); + if (mouse_in) + e_client_mouse_in(ec, x, y); } return; } --
