aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-04-08 16:05:03 -0400
committerLibravatar GitHub <noreply@github.com>2018-04-08 16:05:03 -0400
commit07b6be62144f84539b97ce9d41e9a6c5792deb54 (patch)
treee5031e3e9a86c67bde038523b2d2cbf773a7303e /sway/commands
parentMerge pull request #1781 from swaywm/map-to-output (diff)
parent80char (diff)
downloadsway-07b6be62144f84539b97ce9d41e9a6c5792deb54.tar.gz
sway-07b6be62144f84539b97ce9d41e9a6c5792deb54.tar.zst
sway-07b6be62144f84539b97ce9d41e9a6c5792deb54.zip
Merge pull request #1769 from acrisci/focus-inactive-fixes
Focus inactive fixes
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/split.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/commands/split.c b/sway/commands/split.c
index ab8565a9..130ed31f 100644
--- a/sway/commands/split.c
+++ b/sway/commands/split.c
@@ -11,6 +11,7 @@
11static struct cmd_results *do_split(int layout) { 11static struct cmd_results *do_split(int layout) {
12 struct sway_container *con = config->handler_context.current_container; 12 struct sway_container *con = config->handler_context.current_container;
13 struct sway_container *parent = container_split(con, layout); 13 struct sway_container *parent = container_split(con, layout);
14 container_create_notify(parent);
14 arrange_windows(parent, -1, -1); 15 arrange_windows(parent, -1, -1);
15 16
16 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 17 return cmd_results_new(CMD_SUCCESS, NULL, NULL);