only reject client mouse out for X clients
authorMike Blumenkrantz <zmike@osg.samsung.com>
Fri, 13 Feb 2015 21:24:24 +0000 (16:24 -0500)
committerMike Blumenkrantz <zmike@osg.samsung.com>
Fri, 13 Feb 2015 21:24:24 +0000 (16:24 -0500)
not sure this is still applicable since systray xembeds are gone

src/bin/e_client.c

index 86974d2ebff48de4c3720d002bea9e7bd90f1531..98b8a8fda60ab4056e682223bda53a6511787d17 100644 (file)
@@ -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;