summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2016-02-03 16:47:17 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2016-02-05 15:34:25 +1000
commitcbf775ba3d73a9552957831b9a85db4b974706ae (patch)
treed77287b7143e268b65de904f7ec50b89866d1c9e /tools
parent0b0150e08d4e3e88d7a81a7429306d8dca2fe4c8 (diff)
tools: fix output to say TABLET_TOOL instead of just tablet
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'tools')
-rw-r--r--tools/event-debug.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/event-debug.c b/tools/event-debug.c
index 648111e5..2c904fe0 100644
--- a/tools/event-debug.c
+++ b/tools/event-debug.c
@@ -110,16 +110,16 @@ print_event_header(struct libinput_event *ev)
type = "GESTURE_PINCH_END";
break;
case LIBINPUT_EVENT_TABLET_TOOL_AXIS:
- type = "TABLET_AXIS";
+ type = "TABLET_TOOL_AXIS";
break;
case LIBINPUT_EVENT_TABLET_TOOL_PROXIMITY:
- type = "TABLET_PROXIMITY";
+ type = "TABLET_TOOL_PROXIMITY";
break;
case LIBINPUT_EVENT_TABLET_TOOL_TIP:
- type = "TABLET_TIP";
+ type = "TABLET_TOOL_TIP";
break;
case LIBINPUT_EVENT_TABLET_TOOL_BUTTON:
- type = "TABLET_BUTTON";
+ type = "TABLET_TOOL_BUTTON";
break;
}