ipc: fix workspace::focus event behaviour

This commit is contained in:
Ian Fan 2018-07-18 21:52:15 +01:00
parent 3edaf2ce2a
commit b2ac234569
2 changed files with 4 additions and 2 deletions

View file

@ -598,7 +598,7 @@ void container_move(struct sway_container *container,
next_ws = container_parent(next_ws, C_WORKSPACE);
}
if (last_ws && next_ws && last_ws != next_ws) {
ipc_event_workspace(last_ws, container, "focus");
ipc_event_workspace(last_ws, next_ws, "focus");
workspace_detect_urgent(last_ws);
workspace_detect_urgent(next_ws);
}