diff options
author | Ronan Pigott <rpigott@berkeley.edu> | 2020-11-10 23:21:20 -0700 |
---|---|---|
committer | Tudor Brindus <me@tbrindus.ca> | 2020-12-20 00:58:42 -0500 |
commit | 89ffeaae495d02d37dbdcef12a48be7fb1cbb055 (patch) | |
tree | 160de6dbf4813f989a8b543774469032768f19c2 | |
parent | 432c4df6e71e32c486c830cba21a4ae0903f6647 (diff) |
commands/move: reset geometry of promoted containers
-rw-r--r-- | sway/commands/move.c | 2 |
1 files changed, 2 insertions, 0 deletions
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); } |