aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-12-25 14:52:14 -0700
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-12-25 14:52:14 -0700
commit33a74bfb9323958c2fb1e1081c92ba1b683a6a5d (patch)
treeaf8f8b6a184777f85d81774be99cf88c56c776ce
parentMerge pull request #407 from mikkeloscar/trigger-on-move-floating (diff)
parentFocus new sibling added to container (diff)
downloadsway-33a74bfb9323958c2fb1e1081c92ba1b683a6a5d.tar.gz
sway-33a74bfb9323958c2fb1e1081c92ba1b683a6a5d.tar.zst
sway-33a74bfb9323958c2fb1e1081c92ba1b683a6a5d.zip
Merge pull request #408 from mikkeloscar/add-focus-sibling
Focus new sibling added to container
-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) {
99 list_insert(parent->children, i + 1, active); 99 list_insert(parent->children, i + 1, active);
100 } 100 }
101 active->parent = parent; 101 active->parent = parent;
102 // focus new child
103 parent->focused = active;
102 return active->parent; 104 return active->parent;
103} 105}
104 106