mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
output: drop wlr_output_cursor.events.destroy
Compositors can just listen to wlr_output.events.destroy instead.
This commit is contained in:
parent
1ab3e582ac
commit
638c5cda51
2 changed files with 0 additions and 6 deletions
|
|
@ -566,7 +566,6 @@ struct wlr_output_cursor *wlr_output_cursor_create(struct wlr_output *output) {
|
|||
return NULL;
|
||||
}
|
||||
cursor->output = output;
|
||||
wl_signal_init(&cursor->events.destroy);
|
||||
wl_list_init(&cursor->surface_commit.link);
|
||||
cursor->surface_commit.notify = output_cursor_handle_commit;
|
||||
wl_list_init(&cursor->surface_destroy.link);
|
||||
|
|
@ -581,7 +580,6 @@ void wlr_output_cursor_destroy(struct wlr_output_cursor *cursor) {
|
|||
return;
|
||||
}
|
||||
output_cursor_reset(cursor);
|
||||
wlr_signal_emit_safe(&cursor->events.destroy, cursor);
|
||||
if (cursor->output->hardware_cursor == cursor) {
|
||||
// If this cursor was the hardware cursor, disable it
|
||||
output_set_hardware_cursor(cursor->output, NULL, 0, 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue