Index: sources/view/settings/VHDUsageInfo.cpp =================================================================== diff -u -r8b6ec3036d830a6e60eea0fa9366389f7cc6378a -r7068ee4d52edc26cdfe1ffb6c883566072c62164 --- sources/view/settings/VHDUsageInfo.cpp (.../VHDUsageInfo.cpp) (revision 8b6ec3036d830a6e60eea0fa9366389f7cc6378a) +++ sources/view/settings/VHDUsageInfo.cpp (.../VHDUsageInfo.cpp) (revision 7068ee4d52edc26cdfe1ffb6c883566072c62164) @@ -38,10 +38,10 @@ // In .arg(), the second field is the field width // The third field is the number notation so 'f' in this case means no scientific notation // The fourth field is the number of decimal places which 1 decimal is needed here. - QString timeFormatted = QString("%1").arg(vData.mTotalTxHours, 0, 'f', 1); + QString timeFormatted = QString("%1").arg(vData.mTotalTxHours, 0, 'f', 0); totalTxHours(timeFormatted); - timeFormatted = QString("%1").arg(vData.mTotalTxHoursSinceLastService, 0, 'f', 1); + timeFormatted = QString("%1").arg(vData.mTotalTxHoursSinceLastService, 0, 'f', 0); totalTxHoursSinceLastService(timeFormatted); epochOfStartOfLastTx (Format::fromEpoch(vData.mEpochOfStartOfLastTx, _dateFormat));