aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
authorMikkel Oscar Lyderik <mikkeloscar@gmail.com>2015-12-25 22:32:42 +0100
committerMikkel Oscar Lyderik <mikkeloscar@gmail.com>2015-12-25 22:32:42 +0100
commitcf64000e213d272d23c27bf7d62b86fd77abfa20 (patch)
treeaf8f8b6a184777f85d81774be99cf88c56c776ce /sway
parented46fa7230e69ce07c9437fac9d9599c377e19bc (diff)
Focus new sibling added to container
This makes sure that the window being added to a container gets focus.
Diffstat (limited to 'sway')
-rw-r--r--sway/layout.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/layout.c b/sway/layout.c
index d32f3dd0..d7265605 100644
--- a/sway/layout.c
+++ b/sway/layout.c
@@ -99,6 +99,8 @@ swayc_t *add_sibling(swayc_t *fixed, swayc_t *active) {
list_insert(parent->children, i + 1, active);
}
active->parent = parent;
+ // focus new child
+ parent->focused = active;
return active->parent;
}