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);

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/151448

Title:
  Wacom pressure sensitivity lacking under Wine applications.

To manage notifications about this bug go to:
https://bugs.launchpad.net/wine/+bug/151448/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to