From 263794f42f213fe40b6060153dca9bf880d7d898 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 10 Aug 2015 16:40:56 -0400 Subject: [PATCH] only update wl dnd surface client if a wl drag is active --- src/bin/e_comp_wl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index fbf472304..63697ad31 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;