From b1f478b897a5d2ce7fef9de04506c60757913a47 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 11 Mar 2026 20:53:11 +1000 Subject: [PATCH] tools: fix pencil tablet tool type in libinput-record Co-Authored-by: Claude Code Part-of: --- 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 905fda6e..792943d0 100644 --- a/tools/libinput-record.c +++ b/tools/libinput-record.c @@ -908,7 +908,7 @@ print_tablet_tool_proximity_event(struct record_device *dev, struct libinput_eve tool_type = "brush"; break; case LIBINPUT_TABLET_TOOL_TYPE_PENCIL: - tool_type = "brush"; + tool_type = "pencil"; break; case LIBINPUT_TABLET_TOOL_TYPE_AIRBRUSH: tool_type = "airbrush";