Merge pull request #2649 from wmww/fix-move-crash

Fix crash moving out of tab container
This commit is contained in:
emersion 2018-09-17 10:52:14 +02:00 committed by GitHub
commit 5abf832202
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ static void move_out_of_tabs_stacks(struct sway_container *container,
}
wlr_log(WLR_DEBUG, "Moving out of tab/stack into a split");
if (container->parent) {
if (current->parent) {
struct sway_container *new_parent =
container_split(current->parent, layout);
container_insert_child(new_parent, container, offs < 0 ? 0 : 1);