seat: destroy seat->workspace_osd_timer on exit

This commit is contained in:
tokyo4j 2024-11-12 07:26:45 +09:00 committed by Hiroaki Yamamoto
parent b08f753497
commit 102bcc5013

View file

@ -583,6 +583,11 @@ seat_finish(struct server *server)
input_device_destroy(&input->destroy, NULL); input_device_destroy(&input->destroy, NULL);
} }
if (seat->workspace_osd_timer) {
wl_event_source_remove(seat->workspace_osd_timer);
seat->workspace_osd_timer = NULL;
}
input_handlers_finish(seat); input_handlers_finish(seat);
input_method_relay_finish(seat->input_method_relay); input_method_relay_finish(seat->input_method_relay);
} }