summaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-08-01 07:27:12 -0400
committerLibravatar GitHub <noreply@github.com>2016-08-01 07:27:12 -0400
commit2d907ef1f6f13a7921c295502d7b1047945cc327 (patch)
treef9326301b2dddf573d37612c7926dcb6248c913f /sway/commands.c
parentMerge pull request #812 from zandrmartin/floating-fullscreen-size-fix (diff)
parentUpdate view border when workspace is focused (diff)
downloadsway-2d907ef1f6f13a7921c295502d7b1047945cc327.tar.gz
sway-2d907ef1f6f13a7921c295502d7b1047945cc327.tar.zst
sway-2d907ef1f6f13a7921c295502d7b1047945cc327.zip
Merge pull request #811 from acrisci/feature/focus-container
Implement focus handling for containers
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c
index f0c9cc52..f73bd21c 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -2340,7 +2340,7 @@ static struct cmd_results *_do_split(int argc, char **argv, int layout) {
2340 2340
2341 // update container title if tabbed/stacked 2341 // update container title if tabbed/stacked
2342 if (swayc_tabbed_stacked_ancestor(focused)) { 2342 if (swayc_tabbed_stacked_ancestor(focused)) {
2343 update_view_border(focused); 2343 update_container_border(focused);
2344 swayc_t *output = swayc_parent_by_type(focused, C_OUTPUT); 2344 swayc_t *output = swayc_parent_by_type(focused, C_OUTPUT);
2345 // schedule render to make changes take effect right away, 2345 // schedule render to make changes take effect right away,
2346 // otherwise we would have to wait for the view to render, 2346 // otherwise we would have to wait for the view to render,