aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/split.c
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-04-07 18:01:18 -0400
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-04-07 18:01:18 -0400
commit9db859585e79d468ff79f41db6bc0950fb285a5a (patch)
tree69aea42c2203468654c95ec93c59268520acc2d1 /sway/commands/split.c
parentimplement ipc focus stack (diff)
downloadsway-9db859585e79d468ff79f41db6bc0950fb285a5a.tar.gz
sway-9db859585e79d468ff79f41db6bc0950fb285a5a.tar.zst
sway-9db859585e79d468ff79f41db6bc0950fb285a5a.zip
container_create_notify on split
Diffstat (limited to 'sway/commands/split.c')
-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);