From 717b57b6a25ec60281f13de21ce60b2871a589d6 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 14 Sep 2018 14:27:35 +1000 Subject: [PATCH] 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 --- tools/libinput-debug-events.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libinput-debug-events.c b/tools/libinput-debug-events.c index a264d1d8..87c31690 100644 --- a/tools/libinput-debug-events.c +++ b/tools/libinput-debug-events.c @@ -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)); }