commit b2ac234569ff98de583d9e7755526cadf960f772
parent 3edaf2ce2a8a4753c162491329a7dfa492ff7e77
Author: Ian Fan <ianfan0@gmail.com>
Date: Wed, 18 Jul 2018 21:52:15 +0100
ipc: fix workspace::focus event behaviour
Diffstat:
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/sway/input/seat.c b/sway/input/seat.c
@@ -739,7 +739,9 @@ void seat_set_focus_warp(struct sway_seat *seat,
if (last_focus) {
if (last_workspace) {
- ipc_event_workspace(last_workspace, container, "focus");
+ if (last_workspace != new_workspace) {
+ ipc_event_workspace(last_workspace, new_workspace, "focus");
+ }
if (!workspace_is_visible(last_workspace)
&& workspace_is_empty(last_workspace)) {
if (last_workspace == last_focus) {
diff --git a/sway/tree/layout.c b/sway/tree/layout.c
@@ -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);
}