From: Ingo Bürk Date: Fri, 22 Jan 2016 19:32:51 +0000 (+0100) Subject: Don't ignore focus on _NET_WM_DESKTOP client messages. X-Git-Tag: 4.12~27^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3c0ba081dfa00747a31e2355f683186cda1b8638;p=i3%2Fi3 Don't ignore focus on _NET_WM_DESKTOP client messages. Ignoring the focus leads to a broken focus if the pointer is, e.g., over i3bar at the point in time the window is moved by the client message. It also causes i3bar's workspace display to break. Thanks to GermainZ for reporting. --- diff --git a/src/handlers.c b/src/handlers.c index 50e218c8..7e116ce7 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -881,7 +881,7 @@ static void handle_client_message(xcb_client_message_event_t *event) { return; } - con_move_to_workspace(con, ws, false, false, true); + con_move_to_workspace(con, ws, true, false, false); } tree_render();