only reject client mouse out for X clients

not sure this is still applicable since systray xembeds are gone
This commit is contained in:
Mike Blumenkrantz 2015-02-13 16:24:24 -05:00
parent db6aeef2b1
commit 1301453fa4
1 changed files with 1 additions and 1 deletions

View 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;