[PC-BSD Commits] r5749 - pcbsd/trunk/SysInstaller
svn at pcbsd.org
svn at pcbsd.org
Mon Jan 4 07:27:06 PST 2010
Author: kris
Date: 2010-01-04 07:27:06 -0800 (Mon, 04 Jan 2010)
New Revision: 5749
Modified:
pcbsd/trunk/SysInstaller/sys-installwidget.cpp
Log:
Tweak the progress bar a bit in SysInstaller GUI, try to not hit 100% before finished
Modified: pcbsd/trunk/SysInstaller/sys-installwidget.cpp
===================================================================
--- pcbsd/trunk/SysInstaller/sys-installwidget.cpp 2010-01-04 15:25:02 UTC (rev 5748)
+++ pcbsd/trunk/SysInstaller/sys-installwidget.cpp 2010-01-04 15:27:06 UTC (rev 5749)
@@ -115,6 +115,7 @@
tmp = tmp.remove(0, tmp.indexOf(":") + 1 );
range = tmp.toInt(&ok);
if ( ok ) {
+ range = range + 50;
progressBarInstall->setRange(0, range);
installFoundCounter = true;
}
More information about the Commits
mailing list