evdev: Stop looking for pointer buttons when we get to BTN_JOYSTICK
We don't want to mark a touchscreen as a button device just because it exposes the BTN_TOUCH and BTN_TOOL buttons.
This commit is contained in:
+1
-1
@@ -524,7 +524,7 @@ evdev_handle_device(struct evdev_device *device)
|
||||
break;
|
||||
}
|
||||
}
|
||||
for (i = BTN_MISC; i < KEY_OK; i++) {
|
||||
for (i = BTN_MISC; i < BTN_JOYSTICK; i++) {
|
||||
if (TEST_BIT(key_bits, i)) {
|
||||
device->caps |= EVDEV_BUTTON;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user