From 5cab9486f3da9895c5eca641d3e50bcc53c93254 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 18 Oct 2017 11:38:48 -0400 Subject: [PATCH] ignore set_input_region requests for wl surfaces which are cursors or drags according to spec this is correct behavior --- src/bin/e_comp_wl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index ce0e398d3..4fc01e78d 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1762,6 +1762,7 @@ _e_comp_wl_surface_cb_input_region_set(struct wl_client *client EINA_UNUSED, str if (!(ec = wl_resource_get_user_data(resource))) return; if (e_object_is_del(E_OBJECT(ec))) return; + if (ec->comp_data->cursor || (ec == e_comp_wl->drag_client)) return; if (ec->comp_data->pending.input) eina_tiler_free(ec->comp_data->pending.input);