From: Duna Oh Date: Tue, 12 Jul 2016 05:52:00 +0000 (+0900) Subject: e_comp_wl: Do not send mouse move event if ec is fully obscured and touch cancelled X-Git-Tag: submit/tizen/20160713.083957~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fb5f6d954b334f50b61c65a7746ed09de98ffa09;p=platform%2Fupstream%2Fenlightenment.git e_comp_wl: Do not send mouse move event if ec is fully obscured and touch cancelled Signed-off-by: Duna Oh Change-Id: Ia0a0d0429d05ddbfeea7e0b235e2352b1115bb28 --- diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index e605613458..6874485d5a 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1023,7 +1023,7 @@ _e_comp_wl_evas_cb_mouse_move(void *data, Evas *evas EINA_UNUSED, Evas_Object *o if (ec->ignored) return; if (!ec->comp_data->surface) return; - if (!need_send_motion && !need_send_released && !ec->vkbd.vkbd) return; + if ((!need_send_motion) && (!need_send_released) && (ec->visibility.obscured == E_VISIBILITY_FULLY_OBSCURED)) return; if ((!e_comp_wl->drag_client) || (!e_client_has_xwindow(e_comp_wl->drag_client)))