If touches are already present on the device, absinfo has the currently
active touch slot. There's a race condition where the slot may change before
we enable the fd and we thus miss out on the ABS_MT_SLOT event. It's still
slightly more correct than assuming whatever comes next is slot 0.
---
 src/evdev.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/evdev.c b/src/evdev.c
index 319c9c1..7462e83 100644
--- a/src/evdev.c
+++ b/src/evdev.c
@@ -466,7 +466,6 @@ evdev_handle_device(struct evdev_device *device)
                        device->abs.min_y = absinfo.minimum;
                        device->abs.max_y = absinfo.maximum;
                        device->is_mt = 1;
-                       device->mt.slot = 0;
                        device->caps |= EVDEV_TOUCH;
 
                        if (!TEST_BIT(abs_bits, ABS_MT_SLOT)) {
@@ -476,6 +475,11 @@ evdev_handle_device(struct evdev_device *device)
                                                   device->devnode);
                                        return 0;
                                }
+                               device->mt.slot = 
device->mtdev->caps.slot.value;
+                       } else {
+                               ioctl(device->fd, EVIOCGABS(ABS_MT_SLOT),
+                                     &absinfo);
+                               device->mt.slot = absinfo.value;
                        }
                }
        }
-- 
1.8.2.1

_______________________________________________
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Reply via email to