Merge pull request #2985 from mihaicmn/fix-retiling

Fix re-tiling for floating containers
This commit is contained in:
Drew DeVault 2018-10-26 03:20:17 +02:00 committed by GitHub
commit b29beb1aa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -676,11 +676,8 @@ void container_set_floating(struct sway_container *container, bool enable) {
container_detach(container);
struct sway_container *reference =
seat_get_focus_inactive_tiling(seat, workspace);
if (reference && reference->view) {
reference = reference->parent;
}
if (reference) {
container_add_child(reference, container);
container_add_sibling(reference, container, 1);
container->width = reference->width;
container->height = reference->height;
} else {