From 9e494415d7710050bfffa08c74a5448f2cfe2c53 Mon Sep 17 00:00:00 2001 From: ToYoNiX Date: Fri, 12 Dec 2025 15:49:42 +0100 Subject: [PATCH] There was a function call that was not declared "tablet_device_destroy" It's declared in the later versions of the patch but here it was not and It was causing compilation errors and adding the function manually from the later version causes seg faults. From what I see it's not required in dwl 0.7 with wlroots 0.18 I just removed the line and kept the patch as it is to keep the credits for who made this update and also I tested it and it worked with no problem. --- patches/tablet-input/tablet-input-0.7.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/tablet-input/tablet-input-0.7.patch b/patches/tablet-input/tablet-input-0.7.patch index a0f1d5f..b12a8d9 100644 --- a/patches/tablet-input/tablet-input-0.7.patch +++ b/patches/tablet-input/tablet-input-0.7.patch @@ -139,7 +139,7 @@ index a2711f6..97d3d53 100644 +void +destroytablet(struct wl_listener *listener, void *data) +{ -+ wl_list_remove(&tablet_device_destroy.link); ++ + wlr_cursor_detach_input_device(cursor, tablet->wlr_device); + tablet = NULL; +}