Skip to content
Snippets Groups Projects
Commit 07ce6c89 authored by Peter Hutterer's avatar Peter Hutterer
Browse files

tools: fix printing of tablet coordinates


Signed-off-by: default avatarPeter Hutterer <peter.hutterer@who-t.net>
parent d6379bc3
No related branches found
No related tags found
No related merge requests found
......@@ -441,7 +441,7 @@ print_tablet_axes(struct libinput_event_tablet_tool *t)
(libinput_event_tablet_tool_##ax##_has_changed(ev) ? "*" : "")
x = libinput_event_tablet_tool_get_x(t);
y = libinput_event_tablet_tool_get_x(t);
y = libinput_event_tablet_tool_get_y(t);
printq("\t%.2f%s/%.2f%s",
x, changed_sym(t, x),
y, changed_sym(t, y));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment