From 432c4df6e71e32c486c830cba21a4ae0903f6647 Mon Sep 17 00:00:00 2001 From: Ronan Pigott Date: Tue, 10 Nov 2020 23:19:18 -0700 Subject: commands/move: squash workspace after directional con move --- sway/commands/move.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sway/commands/move.c b/sway/commands/move.c index ecad9863..1c90f30d 100644 --- a/sway/commands/move.c +++ b/sway/commands/move.c @@ -133,6 +133,7 @@ static void container_move_to_container_from_direction( } container->width = container->height = 0; container->width_fraction = container->height_fraction = 0; + workspace_squash(destination->workspace); } return; } @@ -145,6 +146,7 @@ static void container_move_to_container_from_direction( container_insert_child(destination, container, index); container->width = container->height = 0; container->width_fraction = container->height_fraction = 0; + workspace_squash(destination->workspace); return; } @@ -396,6 +398,7 @@ static bool container_move_in_direction(struct sway_container *container, if (old_parent) { container_reap_empty(old_parent); } + workspace_squash(container->workspace); return true; } } -- cgit v1.2.3-54-g00ecf