summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2016-06-01 13:06:27 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2016-06-01 13:11:20 -0400
commit48ee824c636212200de644862a7a7f8691c7070a (patch)
treed7e5b5699c885b5e5494dd3b84c710513d220c10
parent3c9013eeb0428b03c330a776824e7d4fcdd032f9 (diff)
downloadenlightenment-48ee824c636212200de644862a7a7f8691c7070a.tar.gz
only block mouse-out callback for wl action clients if the mouse is grabbed
-rw-r--r--src/bin/e_comp_wl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c
index d58e1e239a..13c715dae4 100644
--- a/src/bin/e_comp_wl.c
+++ b/src/bin/e_comp_wl.c
@@ -178,7 +178,7 @@ _e_comp_wl_evas_cb_mouse_out(void *data, Evas *evas EINA_UNUSED, Evas_Object *ob
uint32_t serial;
if (!(ec = data)) return;
- if (ec->cur_mouse_action) return;
+ if (ec->cur_mouse_action && e_grabinput_mouse_win_get()) return;
/* FIXME? this is a hack to just reset the cursor whenever we mouse out. not sure if accurate */
{
Evas_Object *o;