Merge pull request #2621 from emersion/fix-unmap-segfault

Don't use handler_context in view_unmap
This commit is contained in:
Drew DeVault 2018-09-11 19:50:00 -04:00 committed by GitHub
commit d8a96c9e4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -583,7 +583,10 @@ void view_unmap(struct sway_view *view) {
workspace_detect_urgent(ws);
}
cursor_send_pointer_motion(config->handler_context.seat->cursor, 0, true);
struct sway_seat *seat;
wl_list_for_each(seat, &input_manager->seats, link) {
cursor_send_pointer_motion(seat->cursor, 0, true);
}
transaction_commit_dirty();
view->surface = NULL;