diff options
-rw-r--r-- | src/evdev.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/evdev.c b/src/evdev.c index 30120b6..1356411 100644 --- a/src/evdev.c +++ b/src/evdev.c @@ -1285,6 +1285,8 @@ EvdevCacheCompare(InputInfoPtr pInfo, BOOL compare) xf86Msg(X_ERROR, "ioctl EVIOCGABS failed: %s\n", strerror(errno)); goto error; } + /* ignore current position (value) in comparison (bug #19819) */ + absinfo[i].value = pEvdev->absinfo[i].value; } } |