mirror of
https://github.com/swaywm/sway.git
synced 2024-11-26 01:41:30 +00:00
Merge pull request #2621 from emersion/fix-unmap-segfault
Don't use handler_context in view_unmap
This commit is contained in:
commit
d8a96c9e4d
|
@ -583,7 +583,10 @@ void view_unmap(struct sway_view *view) {
|
||||||
workspace_detect_urgent(ws);
|
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();
|
transaction_commit_dirty();
|
||||||
view->surface = NULL;
|
view->surface = NULL;
|
||||||
|
|
Loading…
Reference in a new issue