From 21a38713a685e04ab1533f487244f2dc2197e01c Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Fri, 15 Jul 2011 18:13:31 +0000 Subject: Show the total size of the volume along with the free space. This should help identifying the correct player by size, since the free space is only useful to figure if there is enough space to install Rockbox. Change units to GiB since that is more useful given the size of current devices. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30139 a1c6a512-1295-4272-9138-f99709370657 --- rbutil/rbutilqt/sysinfo.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'rbutil/rbutilqt/sysinfo.cpp') diff --git a/rbutil/rbutilqt/sysinfo.cpp b/rbutil/rbutilqt/sysinfo.cpp index a9fa5999b7..a28a9bb812 100644 --- a/rbutil/rbutilqt/sysinfo.cpp +++ b/rbutil/rbutilqt/sysinfo.cpp @@ -63,9 +63,10 @@ QString Sysinfo::getInfo() info += "" + tr("Filesystem") + "
"; QStringList drives = Autodetection::mountpoints(); for(int i = 0; i < drives.size(); i++) { - info += tr("%1, %2 MiB available") + info += tr("%1, %2 GiB of %3 GiB available") .arg(QDir::toNativeSeparators(drives.at(i))) - .arg(Utils::filesystemFree(drives.at(i)) / (1024*1024)); + .arg((double)Utils::filesystemFree(drives.at(i)) / (1<<30), 0, 'f', 2) + .arg((double)Utils::filesystemTotal(drives.at(i)) / (1<<30), 0, 'f', 2); if(i + 1 < drives.size()) info += "
"; } -- cgit v1.2.3