mirror of
https://github.com/X11Libre/xf86-input-synaptics.git
synced 2026-04-14 11:54:16 +00:00
eventcomm: ignore fake and broken MT devices
An MT device without X/Y is not a touchpad. And neither are fake MT devices.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
(cherry picked from commit fc9f490a2c)
This commit is contained in:
@@ -320,6 +320,15 @@ event_query_is_touchpad(struct libevdev *evdev, BOOL test_grab)
|
||||
libevdev_has_event_code(evdev, EV_ABS, BTN_TOOL_PEN)) /* Don't match wacom tablets */
|
||||
goto unwind;
|
||||
|
||||
if (libevdev_has_event_code(evdev, EV_ABS, ABS_MT_SLOT)) {
|
||||
if (libevdev_get_num_slots(evdev) == -1)
|
||||
goto unwind; /* Ignore fake MT devices */
|
||||
|
||||
if (!libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_X) ||
|
||||
!libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_Y))
|
||||
goto unwind;
|
||||
}
|
||||
|
||||
ret = TRUE;
|
||||
|
||||
unwind:
|
||||
|
||||
Reference in New Issue
Block a user