mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-02-04 02:20:30 +01:00
evdev: fix duplicated flag value
edit: Luckily there's no overlap between the users of those two flags so this didn't trigger any bugs. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
e8cb7e4523
commit
dd6059aefc
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ enum evdev_device_model {
|
|||
EVDEV_MODEL_LOGITECH_MARBLE_MOUSE = (1 << 26),
|
||||
EVDEV_MODEL_TABLET_NO_PROXIMITY_OUT = (1 << 27),
|
||||
EVDEV_MODEL_MS_NANO_TRANSCEIVER = (1 << 28),
|
||||
EVDEV_MODEL_TABLET_NO_TILT = (1 << 28),
|
||||
EVDEV_MODEL_TABLET_NO_TILT = (1 << 29),
|
||||
};
|
||||
|
||||
enum evdev_button_scroll_state {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue