From 3cae73a7b53e2af5b064542cbca7b0ea3d380cde Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 13 Jul 2018 11:08:56 +1000 Subject: [PATCH] tap: log a tap bug for release on MULTITAP_PALM If we get here, the finger may only triger a PALM_UP but not a RELEASE event. Signed-off-by: Peter Hutterer --- src/evdev-mt-touchpad-tap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/evdev-mt-touchpad-tap.c b/src/evdev-mt-touchpad-tap.c index 90335e1a..e531fd9c 100644 --- a/src/evdev-mt-touchpad-tap.c +++ b/src/evdev-mt-touchpad-tap.c @@ -791,7 +791,7 @@ tp_tap_multitap_palm_handle_event(struct tp_dispatch *tp, { switch (event) { case TAP_EVENT_RELEASE: - /* This is the palm finger */ + log_tap_bug(tp, t, event); break; case TAP_EVENT_TOUCH: tp->tap.state = TAP_STATE_MULTITAP_DOWN;