[PC-BSD Commits] r5245 - pcbsd/trunk/SysInstaller
svn at pcbsd.org
svn at pcbsd.org
Fri Dec 4 19:13:04 PST 2009
Author: kris
Date: 2009-12-04 19:13:04 -0800 (Fri, 04 Dec 2009)
New Revision: 5245
Modified:
pcbsd/trunk/SysInstaller/sys-installwidget.cpp
Log:
Truncate all the output we display from the backend, so that we don't have constant resizing of the gui widget
Modified: pcbsd/trunk/SysInstaller/sys-installwidget.cpp
===================================================================
--- pcbsd/trunk/SysInstaller/sys-installwidget.cpp 2009-12-04 22:06:40 UTC (rev 5244)
+++ pcbsd/trunk/SysInstaller/sys-installwidget.cpp 2009-12-05 03:13:04 UTC (rev 5245)
@@ -76,11 +76,13 @@
installFoundCounter = true;
}
} else {
+ tmp.truncate(50);
labelInstallStatus->setText(tmp);
}
} else {
// We have found a valid count for this install
progressBarInstall->setValue(progressBarInstall->value() + 1);
+ tmp.truncate(50);
labelInstallStatus->setText(tmp);
}
More information about the Commits
mailing list