From fbf47ddd2921974143c5e190d5e2c3ae4ab9908f Mon Sep 17 00:00:00 2001 From: Jens Peters Date: Sat, 4 Apr 2026 07:14:37 +0200 Subject: [PATCH] input: fix tablet tool tilt motion Tilt axis are not relative. --- src/input/tablet.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/input/tablet.c b/src/input/tablet.c index 58587490..82d5e801 100644 --- a/src/input/tablet.c +++ b/src/input/tablet.c @@ -431,8 +431,6 @@ handle_tablet_tool_axis(struct wl_listener *listener, void *data) */ tool->dx = 0; tool->dy = 0; - tool->tilt_x = 0; - tool->tilt_y = 0; if (ev->updated_axes & WLR_TABLET_TOOL_AXIS_X) { tool->x = ev->x;