diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2017-05-26 16:34:10 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2017-05-26 16:27:43 -0400 |
commit | 6e1a52fc7ddd8005e2ac31d2c0749f006ac401e3 (patch) | |
tree | b7218b67060cf2db56b5540f76eb446867bd87b2 /src/lib | |
parent | d725ae5a0a244fd758944fa9847130336477ed66 (diff) | |
download | efl-6e1a52fc7ddd8005e2ac31d2c0749f006ac401e3.tar.gz |
elput: do not set TABLET_PAD to have POINTER caps
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/elput/elput_evdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |