projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db6aeef
)
only reject client mouse out for X clients
author
Mike Blumenkrantz
<zmike@osg.samsung.com>
Fri, 13 Feb 2015 21:24:24 +0000
(16:24 -0500)
committer
Mike 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
patch
|
blob
|
history
diff --git
a/src/bin/e_client.c
b/src/bin/e_client.c
index 86974d2ebff48de4c3720d002bea9e7bd90f1531..98b8a8fda60ab4056e682223bda53a6511787d17 100644
(file)
--- 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;