[PC-BSD Commits] r6332 - pcbsd/trunk/SysInstaller
svn at pcbsd.org
svn at pcbsd.org
Wed Mar 3 06:56:53 PST 2010
Author: kris
Date: 2010-03-03 06:56:53 -0800 (Wed, 03 Mar 2010)
New Revision: 6332
Modified:
pcbsd/trunk/SysInstaller/sys-installwidget.cpp
Log:
Hide file extraction in SysInstaller, just let user know what its doing and let the progress bar
be thy guide
Modified: pcbsd/trunk/SysInstaller/sys-installwidget.cpp
===================================================================
--- pcbsd/trunk/SysInstaller/sys-installwidget.cpp 2010-03-03 14:52:19 UTC (rev 6331)
+++ pcbsd/trunk/SysInstaller/sys-installwidget.cpp 2010-03-03 14:56:53 UTC (rev 6332)
@@ -162,7 +162,10 @@
} else {
// We have found a valid count for this install
progressBarInstall->setValue(progressBarInstall->value() + 1);
- labelInstallStatus->setText(tmp);
+ if ( tmp.indexOf("x ") == 0 )
+ labelInstallStatus->setText(tr("Installing system... This may take a while..."));
+ else
+ labelInstallStatus->setText(tmp);
}
} // end of while loop
More information about the Commits
mailing list