From 32076a16ac635cafad39c2be65ba436c3701363f Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Thu, 2 Mar 2023 16:47:42 +0600 Subject: [PATCH] mouse_wacom_tablet: Point mode is disabled when suppressed mode is enabled --- src/device/mouse_wacom_tablet.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/device/mouse_wacom_tablet.c b/src/device/mouse_wacom_tablet.c index 31bc92027..16f47260f 100644 --- a/src/device/mouse_wacom_tablet.c +++ b/src/device/mouse_wacom_tablet.c @@ -330,6 +330,8 @@ wacom_report_timer(void *priv) case WACOM_MODE_POINT: { + if (wacom->suppressed_increment) + break; if (!(wacom_switch_off_to_on(wacom->b, wacom->oldb))) return; break;