diff options
author | Chase Douglas <chase.douglas@canonical.com> | 2012-01-03 15:31:43 -0800 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2012-01-06 12:17:00 +1000 |
commit | 8c55e94a6ac91fa856d37206c8a7eda1adcc6b9d (patch) | |
tree | 09bdd827eddda94dfa76f751c432de972950d449 | |
parent | 965338e9d0ee5e2a6135a930347e9dab4b8db0dd (diff) |
Set the default resolution to 0
If we don't know the resolution, set it to 0. This is invalid, and tells
the X client that we don't know the resolution, rather than reporting an
incorrect value.
This value was originally from commit
6271494faa4c45f4fa10509f72e0515f2cef36c6, which is the initial commit
from Adam Jackson adding absolute axis support.
Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | src/evdev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/evdev.c b/src/evdev.c index 9f3a22a..82cdb00 100644 --- a/src/evdev.c +++ b/src/evdev.c @@ -1323,7 +1323,7 @@ EvdevAddAbsValuatorClass(DeviceIntPtr device) for (axis = ABS_X; axis < ABS_MT_SLOT; axis++) { int axnum = pEvdev->axis_map[axis]; - int resolution = 10000; + int resolution = 0; if (axnum == -1) continue; @@ -1345,7 +1345,7 @@ EvdevAddAbsValuatorClass(DeviceIntPtr device) #ifdef MULTITOUCH for (axis = ABS_MT_TOUCH_MAJOR; axis <= ABS_MAX; axis++) { int axnum = pEvdev->axis_map[axis]; - int resolution = 10000; + int resolution = 0; int j; BOOL skip = FALSE; |