Merge pull request #2028 from RyanDwyer/fix-move-workspace

Fix crash in move workspace to output command
This commit is contained in:
Drew DeVault 2018-05-24 09:17:40 -04:00 committed by GitHub
commit 3c77f066a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 2 deletions

View File

@ -187,9 +187,17 @@ void container_move_to(struct sway_container *container,
container_notify_child_title_changed(old_parent);
container_notify_child_title_changed(new_parent);
if (old_parent) {
arrange_children_of(old_parent);
if (old_parent->type == C_OUTPUT) {
arrange_output(old_parent);
} else {
arrange_children_of(old_parent);
}
}
if (new_parent->type == C_OUTPUT) {
arrange_output(new_parent);
} else {
arrange_children_of(new_parent);
}
arrange_children_of(new_parent);
// If view was moved to a fullscreen workspace, refocus the fullscreen view
struct sway_container *new_workspace = container;
if (new_workspace->type != C_WORKSPACE) {