discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=1301453fa427191403482b85e43c372eb1b412a4
commit 1301453fa427191403482b85e43c372eb1b412a4 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Fri Feb 13 16:24:24 2015 -0500 only reject client mouse out for X clients not sure this is still applicable since systray xembeds are gone --- src/bin/e_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_client.c b/src/bin/e_client.c index 86974d2..98b8a8f 100644 --- a/src/bin/e_client.c +++ b/src/bin/e_client.c @@ -2703,7 +2703,7 @@ e_client_mouse_out(E_Client *ec, int x, int y) if (ec->fullscreen) return; if (e_object_is_del(E_OBJECT(ec))) return; if (ec->desk && ec->desk->animate_count) return; - if (E_INSIDE(x, y, ec->x, ec->y, ec->w, ec->h)) return; + if (e_pixmap_is_x(ec->pixmap) && E_INSIDE(x, y, ec->x, ec->y, ec->w, ec->h)) return; ec->mouse.current.mx = x; ec->mouse.current.my = y; --