Merge pull request #2768 from RyanDwyer/fix-flatten-crash

Fix crash when flattening container after moving
This commit is contained in:
emersion 2018-10-05 09:40:05 +02:00 committed by GitHub
commit c1f09939ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -157,6 +157,11 @@ static void handle_seat_node_destroy(struct wl_listener *listener, void *data) {
seat_node_destroy(seat_node);
if (!parent) {
// Destroying a container that is no longer in the tree
return;
}
// Find new focus_inactive (ie. sibling, or workspace if no siblings left)
struct sway_node *next_focus = NULL;
while (next_focus == NULL) {