projects
/
platform
/
upstream
/
libinput.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4785a1c
)
gestures: log the finger count together with the gesture state
author
Peter Hutterer
<peter.hutterer@who-t.net>
Fri, 13 Sep 2024 04:10:51 +0000
(14:10 +1000)
committer
Peter Hutterer
<peter.hutterer@who-t.net>
Fri, 4 Oct 2024 05:13:23 +0000
(15:13 +1000)
Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1049>
src/evdev-mt-touchpad-gestures.c
patch
|
blob
|
history
diff --git
a/src/evdev-mt-touchpad-gestures.c
b/src/evdev-mt-touchpad-gestures.c
index 655c37d8a93ed532bc32e12e3c27774e3b04a073..d61e268b8c3a98c3d954a1c8723344c324966934 100644
(file)
--- a/
src/evdev-mt-touchpad-gestures.c
+++ b/
src/evdev-mt-touchpad-gestures.c
@@
-832,7
+832,8
@@
tp_gesture_handle_event(struct tp_dispatch *tp,
if (oldstate != tp->gesture.state) {
evdev_log_debug(tp->device,
- "gesture: state %s → %s → %s\n",
+ "gesture: [%dfg] state %s → %s → %s\n",
+ tp->gesture.finger_count,
gesture_state_to_str(oldstate),
gesture_event_to_str(event),
gesture_state_to_str(tp->gesture.state));