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.
This commit is contained in:
Ingo Bürk 2016-01-22 20:32:51 +01:00
parent f9a47c2611
commit 3c0ba081df
1 changed files with 1 additions and 1 deletions

View File

@ -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();