From a3cd15626514777915db2bde2a39e58bf711b9e8 Mon Sep 17 00:00:00 2001 From: Jehan Date: Tue, 15 Aug 2017 21:12:17 +0200 Subject: [PATCH] app: remove useless double space. I don't think there is any good reason for the distance/angle to be separated by 2 spaces from the status message. --- app/tools/gimppainttool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/tools/gimppainttool.c b/app/tools/gimppainttool.c index a7b4d11426..b4154be54a 100644 --- a/app/tools/gimppainttool.c +++ b/app/tools/gimppainttool.c @@ -692,7 +692,7 @@ gimp_paint_tool_oper_update (GimpTool *tool, /* show distance and angle in statusbar */ if (shell->unit == GIMP_UNIT_PIXEL) { - gimp_tool_push_status (tool, display, "%.1f %s, %.2f\302\260. %s", + gimp_tool_push_status (tool, display, "%.1f %s, %.2f\302\260. %s", pixel_dist, _("pixels"), angle, status_help); } else @@ -711,7 +711,7 @@ gimp_paint_tool_oper_update (GimpTool *tool, digits = gimp_unit_get_scaled_digits (shell->unit, pixel_dist / inch_dist); - g_snprintf (format_str, sizeof (format_str), "%%.%df %s, %%.2f\302\260. %%s", + g_snprintf (format_str, sizeof (format_str), "%%.%df %s, %%.2f\302\260. %%s", digits, gimp_unit_get_symbol (shell->unit)); gimp_tool_push_status (tool, display, format_str,