mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
Ack, forgot half the fix
svn path=/trunk/KDE/kdebase/apps/; revision=790987
This commit is contained in:
parent
fba908b88c
commit
daf788e858
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ void StatusBarSpaceInfo::slotFoundMountPoint(const QString& mountPoint,
|
|||
const bool valuesChanged = (kBUsed != static_cast<quint64>(value())) ||
|
||||
(kBAvailable != static_cast<quint64>(maximum()));
|
||||
if (valuesChanged) {
|
||||
m_text = i18nc("@info:status Free disk space", "%1 free", KIO::convertSize(kBAvailable));
|
||||
m_text = i18nc("@info:status Free disk space", "%1 free", KIO::convertSize(kBAvailable*1024));
|
||||
setMaximum(kBSize);
|
||||
setValue(kBUsed);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue