From 790d8c5e31049e84f08181cce3e46de82ed027cd Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 14 Aug 2019 10:16:27 +1000 Subject: [PATCH] wacom: fix pressure range for the IntuosPro 8191 seems to be the max value Signed-off-by: Peter Hutterer --- tuhi/wacom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuhi/wacom.py b/tuhi/wacom.py index f41999a..18cd59b 100644 --- a/tuhi/wacom.py +++ b/tuhi/wacom.py @@ -1049,7 +1049,7 @@ class WacomProtocolIntuosPro(WacomProtocolSlate): y_min = 0 y_max = 29600 - pressure = 4095 + pressure = 8192 protocol = ProtocolVersion.INTUOS_PRO packet_handlers = [WacomPacketHandlerStrokePrefixIntuosPro, WacomPacketHandlerStrokeTimestampIntuosPro,