tools: align the rotation value with 3 digits

This is a 0-360 ranged value, so let's print it aligned.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2018-09-14 14:27:35 +10:00
parent 6ed158f99d
commit 717b57b6a2

View file

@ -398,7 +398,7 @@ print_tablet_axes(struct libinput_event_tablet_tool *t)
if (libinput_tablet_tool_has_rotation(tool)) {
rotation = libinput_event_tablet_tool_get_rotation(t);
printq("\trotation: %.2f%s",
printq("\trotation: %6.2f%s",
rotation, changed_sym(t, rotation));
}