discomfitor pushed a commit to branch enlightenment-0.21. http://git.enlightenment.org/core/enlightenment.git/commit/?id=d15c72417c03882e3474d07d59b34a163215ded9
commit d15c72417c03882e3474d07d59b34a163215ded9 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Wed Oct 18 11:38:48 2017 -0400 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 550ba3da1..e199b739e 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1726,6 +1726,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); --