From: Jeff Mitchell Date: Thu, 27 Mar 2008 22:53:14 +0000 (+0000) Subject: Ack, forgot half the fix X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/daf788e858774b4d5e11ac199fecfa0e6896e1bb?ds=sidebyside Ack, forgot half the fix svn path=/trunk/KDE/kdebase/apps/; revision=790987 --- diff --git a/src/statusbarspaceinfo.cpp b/src/statusbarspaceinfo.cpp index be9af5685..8ee98a3d0 100644 --- a/src/statusbarspaceinfo.cpp +++ b/src/statusbarspaceinfo.cpp @@ -74,7 +74,7 @@ void StatusBarSpaceInfo::slotFoundMountPoint(const QString& mountPoint, const bool valuesChanged = (kBUsed != static_cast(value())) || (kBAvailable != static_cast(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); }