From 892c4a44ca6c89f05f5976f3868dafb6fbff7ac5 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 20 Jan 2016 16:23:02 -0500 Subject: [PATCH] add render updates for cursor clients if damages exist during set_cursor this indicates a cursor surface which has been committed but could not be rendered due to lack of shell interface and cursor hint --- src/bin/e_comp_wl_input.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_comp_wl_input.c b/src/bin/e_comp_wl_input.c index 60ae27478..61c29a9bb 100644 --- a/src/bin/e_comp_wl_input.c +++ b/src/bin/e_comp_wl_input.c @@ -66,6 +66,8 @@ _e_comp_wl_input_pointer_cb_cursor_set(struct wl_client *client, struct wl_resou ec->icccm.title = eina_stringshare_add("noshadow"); evas_object_pass_events_set(ec->frame, 1); evas_object_show(ec->frame); + if (e_comp_object_damage_exists(ec->frame)) + e_comp_object_render_update_add(ec->frame); ec->comp_data->mapped = 1; e_client_focus_stack_set(eina_list_remove(e_client_focus_stack_get(), ec)); EC_CHANGED(ec);