diff --git a/src/gui/accountsettings.cpp b/src/gui/accountsettings.cpp index b3a6b5691f94..557a0a660a22 100644 --- a/src/gui/accountsettings.cpp +++ b/src/gui/accountsettings.cpp @@ -1226,7 +1226,7 @@ void AccountSettings::slotUpdateQuota(qint64 total, qint64 used) _ui->quotaProgressBar->setEnabled(true); // workaround the label only accepting ints (which may be only 32 bit wide) const auto percent = used / (double)total * 100; - const auto percentInt = qMin(qRound(percent), 100); + // const auto percentInt = qMin(qRound(percent), 100); _ui->quotaProgressBar->setValue(percent); const auto usedStr = Utility::octetsToString(used); const auto totalStr = Utility::octetsToString(total);