[gthumb] map view: added a space after minutes and seconds for better readability



commit 5808a7442875feb5087652832ba18e7706ba5729
Author: Paolo Bacchilega <paobac src gnome org>
Date:   Sat Apr 30 21:56:23 2011 +0200

    map view: added a space after minutes and seconds for better readability

 extensions/map_view/gth-map-view.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/extensions/map_view/gth-map-view.c b/extensions/map_view/gth-map-view.c
index 6246f0e..c694071 100644
--- a/extensions/map_view/gth-map-view.c
+++ b/extensions/map_view/gth-map-view.c
@@ -95,12 +95,12 @@ decimal_to_string (double value)
 	/* minutes */
 
 	part = floor (value);
-	g_string_append_printf (s, "%.0fʹ", part);
+	g_string_append_printf (s, " %.0fʹ", part);
 	value = (value - part) * 60.0;
 
 	/* seconds */
 
-	g_string_append_printf (s, "%02.3fʺ", value);
+	g_string_append_printf (s, " %02.3fʺ", value);
 
 	return g_string_free (s, FALSE);
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]