From ed1d181cf6d4ea0a462deeb3720fe085d4f29ddf Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 7 Feb 2020 16:17:30 +1000 Subject: [PATCH] tools: record: record the EVDEV_ABS properties correctly Signed-off-by: Peter Hutterer --- tools/libinput-record.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libinput-record.c b/tools/libinput-record.c index ed346b24..a96cf0cb 100644 --- a/tools/libinput-record.c +++ b/tools/libinput-record.c @@ -1768,7 +1768,7 @@ print_udev_properties(struct record_context *ctx, struct record_device *dev) if (strneq(key, "ID_INPUT", 8) || strneq(key, "LIBINPUT", 8) || - strneq(key, "EV_ABS", 6) || + strneq(key, "EVDEV_ABS", 9) || strneq(key, "MOUSE_DPI", 9) || strneq(key, "POINTINGSTICK_", 14)) { value = udev_list_entry_get_value(entry);