From 69c85fc1aa013cfe65e1b87c07a001b3d5d5625c Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 30 Jun 2017 10:25:23 -0400 Subject: [PATCH] only set E_Client->want_focus for wl override clients if not popup client do not attempt to focus popups as they are already child windows and thus do not require keyboard focus --- src/bin/e_comp_wl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index d6fcec396..e46ae9482 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1349,7 +1349,7 @@ _e_comp_wl_surface_state_commit(E_Client *ec, E_Comp_Wl_Surface_State *state) if (first && (!ec->comp_data->cursor)) { ec->take_focus = !starting || ec->internal_elm_win; - ec->want_focus = ec->override; + ec->want_focus = ec->override && !e_client_util_is_popup(ec); } }