commit 9db859585e79d468ff79f41db6bc0950fb285a5a
parent 0ff22c1755a906309e08c0c45f4732c842e4636e
Author: Tony Crisci <tony@dubstepdish.com>
Date: Sat, 7 Apr 2018 18:01:18 -0400
container_create_notify on split
Diffstat:
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/sway/commands/split.c b/sway/commands/split.c
@@ -11,6 +11,7 @@
static struct cmd_results *do_split(int layout) {
struct sway_container *con = config->handler_context.current_container;
struct sway_container *parent = container_split(con, layout);
+ container_create_notify(parent);
arrange_windows(parent, -1, -1);
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
diff --git a/sway/tree/layout.c b/sway/tree/layout.c
@@ -251,6 +251,7 @@ static void workspace_rejigger(struct sway_container *ws,
container_flatten(ws);
container_reap_empty_recursive(original_parent);
wl_signal_emit(&child->events.reparent, original_parent);
+ container_create_notify(new_parent);
arrange_windows(ws, -1, -1);
}