mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-26 00:30:05 +01:00
udev: only change the fuzz on touchpads and touchscreens
If we don't handle a device, don't touch it. Especially joysticks that we don't handle and thus should not touch either. Related to !231 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
bf4277623f
commit
410b157e84
1 changed files with 3 additions and 1 deletions
|
|
@ -110,7 +110,9 @@ int main(int argc, char **argv)
|
||||||
if (!device)
|
if (!device)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
handle_absfuzz(device);
|
if (udev_device_get_property_value(device, "ID_INPUT_TOUCHPAD") ||
|
||||||
|
udev_device_get_property_value(device, "ID_INPUT_TOUCHSCREEN"))
|
||||||
|
handle_absfuzz(device);
|
||||||
|
|
||||||
rc = 0;
|
rc = 0;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue