sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit daf328d0540b3e4919ae726922b68b8edc0fc2a3
parent a268a0c2ae9dcad918eae44bd325dc21977ac3fc
Author: Drew DeVault <sir@cmpwn.com>
Date:   Fri, 25 May 2018 08:43:57 -0400

Merge pull request #2033 from RyanDwyer/arrange-after-flatten

Arrange views after flattening the parent
Diffstat:
Msway/tree/layout.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sway/tree/layout.c b/sway/tree/layout.c @@ -327,9 +327,11 @@ void container_move(struct sway_container *container, current = container_parent(container, C_OUTPUT); } - if (parent != container_flatten(parent)) { + struct sway_container *new_parent = container_flatten(parent); + if (new_parent != parent) { // Special case: we were the last one in this container, so flatten it // and leave + arrange_children_of(new_parent); update_debug_tree(); return; }