From 1301453fa427191403482b85e43c372eb1b412a4 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 13 Feb 2015 16:24:24 -0500 Subject: [PATCH] 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 86974d2eb..98b8a8fda 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;