[PC-BSD Commits] r19652 - pcbsd/current/src-qt4/pc-softwaremanager
svn at pcbsd.org
svn at pcbsd.org
Thu Oct 11 23:45:20 PDT 2012
Author: yurkis
Date: 2012-10-12 06:45:19 +0000 (Fri, 12 Oct 2012)
New Revision: 19652
Modified:
pcbsd/current/src-qt4/pc-softwaremanager/softmanager-pbiupdate.cpp
Log:
updateAll button now visible/unvisible (not enabled / disabled)
Modified: pcbsd/current/src-qt4/pc-softwaremanager/softmanager-pbiupdate.cpp
===================================================================
--- pcbsd/current/src-qt4/pc-softwaremanager/softmanager-pbiupdate.cpp 2012-10-11 18:00:07 UTC (rev 19651)
+++ pcbsd/current/src-qt4/pc-softwaremanager/softmanager-pbiupdate.cpp 2012-10-12 06:45:19 UTC (rev 19652)
@@ -17,7 +17,7 @@
return;
// No updates yet, disable the button
- pushUpdateAll->setEnabled(false);
+ pushUpdateAll->setVisible(false);
// Set our Iterator, and start checking our list for updates!
currentCheckingPBI = new QTreeWidgetItemIterator(SoftwareListBox);
@@ -87,7 +87,7 @@
refreshAppInfo(item);
// Enable the update all button
- pushUpdateAll->setEnabled(true);
+ pushUpdateAll->setVisible(true);
} else {
// Update is invalid for some reason, no update for you!
item->setUpdateAvail(false);
More information about the Commits
mailing list