discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=6e1a52fc7ddd8005e2ac31d2c0749f006ac401e3
commit 6e1a52fc7ddd8005e2ac31d2c0749f006ac401e3 Author: Mike Blumenkrantz <[email protected]> Date: Fri May 26 16:34:10 2017 -0400 elput: do not set TABLET_PAD to have POINTER caps --- src/lib/elput/elput_evdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elput/elput_evdev.c b/src/lib/elput/elput_evdev.c index 81f1302f54..716f8ac29e 100644 --- a/src/lib/elput/elput_evdev.c +++ b/src/lib/elput/elput_evdev.c @@ -1582,7 +1582,7 @@ _evdev_device_create(Elput_Seat *seat, struct libinput_device *device) if (libinput_device_has_capability(device, LIBINPUT_DEVICE_CAP_TABLET_TOOL)) edev->caps |= ELPUT_DEVICE_CAPS_POINTER | ELPUT_DEVICE_CAPS_TABLET_TOOL; if (libinput_device_has_capability(device, LIBINPUT_DEVICE_CAP_TABLET_PAD)) - edev->caps |= ELPUT_DEVICE_CAPS_POINTER | ELPUT_DEVICE_CAPS_TABLET_PAD; + edev->caps |= ELPUT_DEVICE_CAPS_TABLET_PAD; if (edev->caps & ELPUT_DEVICE_CAPS_POINTER) { _pointer_init(seat); --
