[PATCH libinput] touchpad: don't try to unhover touches in NONE state
Peter Hutterer
peter.hutterer at who-t.net
Wed Mar 29 01:38:49 UTC 2017
Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>
---
src/evdev-mt-touchpad.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/evdev-mt-touchpad.c b/src/evdev-mt-touchpad.c
index 674cf1c..eb950a2 100644
--- a/src/evdev-mt-touchpad.c
+++ b/src/evdev-mt-touchpad.c
@@ -811,6 +811,9 @@ tp_unhover_pressure(struct tp_dispatch *tp, uint64_t time)
for (i = 0; i < (int)tp->num_slots; i++) {
t = tp_get_touch(tp, i);
+ if (t->state == TOUCH_NONE)
+ continue;
+
if (t->dirty) {
if (t->state == TOUCH_HOVERING) {
if (t->pressure >= tp->pressure.high) {
--
2.9.3
More information about the wayland-devel
mailing list