From: Mike Blumenkrantz Date: Mon, 10 Aug 2015 20:40:56 +0000 (-0400) Subject: only update wl dnd surface client if a wl drag is active X-Git-Tag: upstream/0.20.0~408 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=263794f42f213fe40b6060153dca9bf880d7d898;p=platform%2Fupstream%2Fenlightenment.git only update wl dnd surface client if a wl drag is active --- diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index fbf4723..63697ad 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1108,7 +1108,8 @@ _e_comp_wl_surface_state_commit(E_Client *ec, E_Comp_Wl_Surface_State *state) ecore_evas_pointer_xy_get(e_comp->ee, &ec->mouse.current.mx, &ec->mouse.current.my); ec->netwm.sync.send_time = ecore_loop_time_get(); } - if (e_comp->wl_comp_data->drag_client && (e_comp->wl_comp_data->drag_client == ec)) + if (e_comp->wl_comp_data->drag && e_comp->wl_comp_data->drag_client && + (e_comp->wl_comp_data->drag_client == ec)) { e_comp->wl_comp_data->drag->dx -= state->sx; e_comp->wl_comp_data->drag->dy -= state->sy;