backend/wayland: destroy relative pointer when output is disconnected

Fixes #2243
Fixes #2106
This commit is contained in:
Ilia Bozhinov 2020-08-17 11:33:57 +02:00 committed by GitHub
parent 379835c42f
commit 9feeb2738d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -473,6 +473,9 @@ static void pointer_handle_output_destroy(struct wl_listener *listener,
void *data) {
struct wlr_wl_pointer *pointer =
wl_container_of(listener, pointer, output_destroy);
if (pointer->relative_pointer) {
zwp_relative_pointer_v1_destroy(pointer->relative_pointer);
}
wlr_input_device_destroy(&pointer->input_device->wlr_input_device);
}