mirror of
https://github.com/swaywm/sway.git
synced 2024-11-26 01:41:30 +00:00
Don't use handler_context in view_unmap
This commit is contained in:
parent
822b45f483
commit
8b263429cf
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue