[Bug 11846] tablet pressure sensitivity not working in Sai and many other key graphic applications

WineHQ Bugzilla wine-bugs at winehq.org
Mon Dec 14 10:21:30 CST 2020


https://bugs.winehq.org/show_bug.cgi?id=11846

devil.tamachan at gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |devil.tamachan at gmail.com

--- Comment #119 from devil.tamachan at gmail.com ---
pkButtons is always 2.

https://www.winehq.org/pipermail/wine-devel/2007-December/061414.html
> That is, in X, our devices come out as 1 based (not 0 based), and
>  on Windows, they report as 0 based.  iow, with this patch, pkButtons is always 2;
>  on Windows, it's always 1.


patch

https://github.com/wine-mirror/wine/blob/master/dlls/winex11.drv/wintab.c#L906

wintab.c - motion_event()

    gMsgPacket.pkNormalPressure = motion->axis_data[2];
-    gMsgPacket.pkButtons = get_button_state(curnum);
+    gMsgPacket.pkButtons = get_button_state(curnum)-1;
    gMsgPacket.pkChanged = get_changed_state(&gMsgPacket);

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list