Reduce temperature's precision from six decimal places to two

Summary: BUG: 411226

Test Plan: I couldn't test it since my device does not support SMART

Reviewers: stikonas

Reviewed By: stikonas

Subscribers: #kde_partition_manager

Tags: #kde_partition_manager

Differential Revision: https://phabricator.kde.org/D23572
This commit is contained in:
Shubham Jangra 2019-09-01 23:08:08 +05:30
parent 60bba03afa
commit 78f29ae8b5
1 changed files with 1 additions and 1 deletions

View File

@ -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, 1), QLocale().toString(fahrenheit, 1));
QLocale().toString(celsius, 'g', 2), QLocale().toString(fahrenheit, 'g', 2));
}
QString SmartStatus::selfTestStatusToString(SmartStatus::SelfTestStatus s)