Devices with physical buttons export at least one device with DeviceType.PAD, which results in their detection in update_current_page. Devices without physical buttons (such as my Wacom One tablets) only exports DeviceType.TABLET.
If no device with DeviceType.PAD is found, I propose to use the first DeviceType.TABLET found. This makes TabletView work fine on my device. I can set left/right handed mode and positive/relative tracking.
Partly addresses issue #20 , but no stylus is found yet.
I'm going to close this in favor of #24 as I think it achieves the same result. If you get chance to test, please let me know how it goes in the comments on that PR.
Devices with physical buttons export at least one device with
DeviceType.PAD
, which results in their detection inupdate_current_page
. Devices without physical buttons (such as my Wacom One tablets) only exportsDeviceType.TABLET
.If no device with
DeviceType.PAD
is found, I propose to use the firstDeviceType.TABLET
found. This makesTabletView
work fine on my device. I can set left/right handed mode and positive/relative tracking.Partly addresses issue #20 , but no stylus is found yet.