From fca5154d1d1b534bd3acfbd5f3d80f87fb7b615a Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 19 Dec 2024 10:28:19 +1000 Subject: [PATCH] touchpad: fix a debug message "released" -> "is no longer palm" The touch itself remains down and is now considered a finger again, so let's make this message less ambiguous. Part-of: --- src/evdev-mt-touchpad.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/evdev-mt-touchpad.c b/src/evdev-mt-touchpad.c index 6494548a..f7605db0 100644 --- a/src/evdev-mt-touchpad.c +++ b/src/evdev-mt-touchpad.c @@ -1051,7 +1051,7 @@ tp_palm_detect_edge(struct tp_dispatch *tp, if (tp_palm_detect_multifinger(tp, t, time)) { t->palm.state = PALM_NONE; evdev_log_debug(tp->device, - "palm: touch %d released, multiple fingers\n", + "palm: touch %d is no longer palm, multiple fingers\n", t->index); /* If labelled a touch as palm, we unlabel as palm when @@ -1061,7 +1061,7 @@ tp_palm_detect_edge(struct tp_dispatch *tp, } else if (tp_palm_detect_move_out_of_edge(tp, t, time)) { t->palm.state = PALM_NONE; evdev_log_debug(tp->device, - "palm: touch %d released, out of edge zone\n", + "palm: touch %d is no longer palm, out of edge zone\n", t->index); } return false;