From 89ffeaae495d02d37dbdcef12a48be7fb1cbb055 Mon Sep 17 00:00:00 2001 From: Ronan Pigott Date: Tue, 10 Nov 2020 23:21:20 -0700 Subject: commands/move: reset geometry of promoted containers --- sway/commands/move.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sway/commands/move.c b/sway/commands/move.c index 1c90f30d..7a7e858e 100644 --- a/sway/commands/move.c +++ b/sway/commands/move.c @@ -395,6 +395,8 @@ static bool container_move_in_direction(struct sway_container *container, workspace_insert_tiling(ancestor->workspace, container, index + (offs < 0 ? 0 : 1)); } + ancestor->height = ancestor->width = 0; + ancestor->height_fraction = ancestor->width_fraction = 0; if (old_parent) { container_reap_empty(old_parent); } -- cgit v1.2.3-54-g00ecf