summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Ashworth <bosrsf04@gmail.com>2019-08-06 04:21:44 -0400
committerDrew DeVault <sir@cmpwn.com>2019-08-20 13:27:52 +0900
commitdaf766eccd673564c8d804962486a01a3a5895c3 (patch)
tree75b225f251ac97eaa639bade96a175fbf5d9377a
parent2e757e13a9501f29691c3dc8d119a142e0fd9d5a (diff)
workspace_split: focus middle if workspace focused
In workspace_split, the middle container that wraps the workspace's children should be focused for any seat that is focusing the workspace
-rw-r--r--sway/tree/workspace.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
index 03869d2eb..b59c91528 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -754,6 +754,13 @@ struct sway_container *workspace_split(struct sway_workspace *workspace,
workspace->layout = layout;
middle->layout = old_layout;
+ struct sway_seat *seat;
+ wl_list_for_each(seat, &server.input->seats, link) {
+ if (seat_get_focus(seat) == &workspace->node) {
+ seat_set_focus(seat, &middle->node);
+ }
+ }
+
return middle;
}