[gnome-color-manager] Kelvin is not a graded scale



commit aa11252ec0cf6a6e3426e34eeb6add83198d5c79
Author: Richard Hughes <richard hughsie com>
Date:   Sat Jun 29 08:22:30 2013 +0100

    Kelvin is not a graded scale
    
    Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=979520

 src/gcm-viewer.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/gcm-viewer.c b/src/gcm-viewer.c
index db661e1..86ed6ee 100644
--- a/src/gcm-viewer.c
+++ b/src/gcm-viewer.c
@@ -1168,11 +1168,11 @@ gcm_viewer_set_profile (GcmViewerPrivate *viewer, CdProfile *profile)
        gtk_widget_set_visible (widget, temperature > 0);
        if (temperature > 0) {
                if (fabs (temperature - 5000) < 10) {
-                       temp = g_strdup_printf ("%i°K (D50)", temperature);
+                       temp = g_strdup_printf ("%iK (D50)", temperature);
                } else if (fabs (temperature - 6500) < 10) {
-                       temp = g_strdup_printf ("%i°K (D65)", temperature);
+                       temp = g_strdup_printf ("%iK (D65)", temperature);
                } else {
-                       temp = g_strdup_printf ("%i°K", temperature);
+                       temp = g_strdup_printf ("%iK", temperature);
                }
                gtk_label_set_label (GTK_LABEL (widget), temp);
                g_free (temp);


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