aboutsummaryrefslogtreecommitdiff
path: root/sway/input/seat.c
diff options
context:
space:
mode:
authorRyan Dwyer <ryandwyer1@gmail.com>2018-10-16 08:17:24 +1000
committerRyan Dwyer <ryandwyer1@gmail.com>2018-10-16 08:17:24 +1000
commit05284b65db5f3cdfa88d7e06055aadd0d5fa8e50 (patch)
tree7238c53d8310712a94b6d798ef096bd3ad48f43e /sway/input/seat.c
parent26278b694c5eeff38512cfe8156567718db73c65 (diff)
Prevent duplicate workspace::focus events
Previously we would compare the last focus's workspace with the new focus's workspace to determine if we need to emit an IPC workspace::focus event. This doesn't work when moving the focused container to a new workspace. This adds a workspace property to the seat which stores the last emitted workspace::focus workspace. Using this method, after moving the container, refocusing it will trigger exactly one workspace::focus event: from the old workspace to the new workspace.
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 6dbd1900..c7deabed 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -623,6 +623,15 @@ static void container_raise_floating(struct sway_container *con) {
}
}
+static void set_workspace(struct sway_seat *seat,
+ struct sway_workspace *new_ws) {
+ if (seat->workspace == new_ws) {
+ return;
+ }
+ ipc_event_workspace(seat->workspace, new_ws, "focus");
+ seat->workspace = new_ws;
+}
+
void seat_set_raw_focus(struct sway_seat *seat, struct sway_node *node) {
struct sway_seat_node *seat_node = seat_node_from_node(seat, node);
wl_list_remove(&seat_node->link);
@@ -709,9 +718,7 @@ void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node,
}
// emit ipc events
- if (new_workspace && last_workspace != new_workspace) {
- ipc_event_workspace(last_workspace, new_workspace, "focus");
- }
+ set_workspace(seat, new_workspace);
if (container && container->view) {
ipc_event_window(container, "focus");
}