diff --git a/src/core/smartstatus.cpp b/src/core/smartstatus.cpp index 85b3c81..d640fcc 100644 --- a/src/core/smartstatus.cpp +++ b/src/core/smartstatus.cpp @@ -82,7 +82,7 @@ QString SmartStatus::tempToString(quint64 mkelvin) const double celsius = (mkelvin - 273150.0) / 1000.0; const double fahrenheit = 9.0 * celsius / 5.0 + 32; return xi18nc("@item:intable degrees in Celsius and Fahrenheit", "%1° C / %2° F", - QLocale().toString(celsius, 'g', 2), QLocale().toString(fahrenheit, 'g', 2)); + QLocale().toString(celsius, 'f', 0), QLocale().toString(fahrenheit, 'f', 0)); } QString SmartStatus::selfTestStatusToString(SmartStatus::SelfTestStatus s)