From 00475b8be85cb63e8f92d9246d654e6ba253a9db Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 13 Feb 2015 15:11:43 -0500 Subject: [PATCH] prevent client cursor clients from receiving focus --- src/bin/e_comp_wl_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl_input.c b/src/bin/e_comp_wl_input.c index f072281f2..1a01532dd 100644 --- a/src/bin/e_comp_wl_input.c +++ b/src/bin/e_comp_wl_input.c @@ -58,7 +58,7 @@ _e_comp_wl_input_pointer_cb_cursor_set(struct wl_client *client, struct wl_resou if (!(ec = e_pixmap_find_client(E_PIXMAP_TYPE_WL, sid))) { ec = e_client_new(NULL, e_pixmap_new(E_PIXMAP_TYPE_WL, sid), 1, 0); - ec->layer_block = ec->visible = ec->override = 1; + ec->lock_focus_out = ec->layer_block = ec->visible = ec->override = 1; ec->new_client = 0; ec->icccm.title = eina_stringshare_add("noshadow"); evas_object_pass_events_set(ec->frame, 1);