From 795657a0a12e4af43a5d2042b96fd8f932fed227 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 2 May 2018 13:51:00 +1000 Subject: [PATCH] tools: print the number of touches for touch devices Signed-off-by: Peter Hutterer --- tools/libinput-debug-events.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/libinput-debug-events.c b/tools/libinput-debug-events.c index 32782c21..9bf9d52f 100644 --- a/tools/libinput-debug-events.c +++ b/tools/libinput-debug-events.c @@ -274,6 +274,10 @@ print_device_notify(struct libinput_event *ev) if (libinput_device_get_size(dev, &w, &h) == 0) printq(" size %.0fx%.0fmm", w, h); + if (libinput_device_has_capability(dev, + LIBINPUT_DEVICE_CAP_TOUCH)) + printq(" ntouches %d", libinput_device_touch_get_touch_count(dev)); + if (libinput_event_get_type(ev) == LIBINPUT_EVENT_DEVICE_ADDED) print_device_options(dev);