[PC-BSD Commits] r19972 - pcbsd/current/src-qt4/about-gui
svn at pcbsd.org
svn at pcbsd.org
Fri Oct 26 05:57:06 PDT 2012
Author: yurkis
Date: 2012-10-26 12:57:06 +0000 (Fri, 26 Oct 2012)
New Revision: 19972
Modified:
pcbsd/current/src-qt4/about-gui/mainwindow.cpp
Log:
Dont display 'Please wait' when using ng
Modified: pcbsd/current/src-qt4/about-gui/mainwindow.cpp
===================================================================
--- pcbsd/current/src-qt4/about-gui/mainwindow.cpp 2012-10-26 12:52:23 UTC (rev 19971)
+++ pcbsd/current/src-qt4/about-gui/mainwindow.cpp 2012-10-26 12:57:06 UTC (rev 19972)
@@ -177,7 +177,6 @@
}
}
- ui->WaitTextLabel->setVisible(true);
ui->DEList->clear();
if (!checkNG())
@@ -187,9 +186,11 @@
connect( pkginfo, SIGNAL(readyRead()), this, SLOT(slotReadPkg() ) );
connect( pkginfo, SIGNAL(finished ( int, QProcess::ExitStatus)), this, SLOT(slotPackagesFinished(int, QProcess::ExitStatus)));
pkginfo->start("pkg_info");
+ ui->WaitTextLabel->setVisible(true);
}
else
{
+ ui->WaitTextLabel->setVisible(false);
for(int i=0 ; i<DEComponentsNG_size; i++)
{
QString ver;
More information about the Commits
mailing list