From: Duna Oh Date: Mon, 30 May 2016 01:58:53 +0000 (+0900) Subject: Do not send mouse move event if ec is fully obscured and touch cancelled X-Git-Tag: submit/tizen/20160531.115504~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8885b80d88a6ea20ac367b60f16f4c3a3608135b;p=platform%2Fupstream%2Fenlightenment.git Do not send mouse move event if ec is fully obscured and touch cancelled Signed-off-by: Duna Oh Change-Id: I827b79c7d8a566d747d426d435edcea16e1bf48c --- diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index b38792441f..291f70ec10 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -963,7 +963,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)))