From 6351e832ea1d5b3658816732e7527f5ef137dc80 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 319c06b3..bc4426d6 100644 --- a/src/input/tablet.c +++ b/src/input/tablet.c @@ -402,8 +402,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;