From fede354a3dfd3309ee068b7eef537b74c2721e2d Mon Sep 17 00:00:00 2001 From: "S. Christoffer Eliesen" Date: Tue, 27 Oct 2015 15:58:39 +0100 Subject: layout: Don't reset container size if it's a floating window. --- sway/layout.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sway/layout.c b/sway/layout.c index 6388a9b2..29772172 100644 --- a/sway/layout.c +++ b/sway/layout.c @@ -289,15 +289,16 @@ void move_container_to(swayc_t* container, swayc_t* destination) { return; } swayc_t *parent = remove_child(container); - // reset container geometry - container->width = container->height = 0; - // Send to new destination if (container->is_floating) { add_floating(swayc_active_workspace_for(destination), container); } else if (destination->type == C_WORKSPACE) { + // reset container geometry + container->width = container->height = 0; add_child(destination, container); } else { + // reset container geometry + container->width = container->height = 0; add_sibling(destination, container); } // Destroy old container if we need to -- cgit v1.2.3-54-g00ecf