Fixed an issue with the pip list dialog related to correct enabled status of the buttons.

Fri, 09 Feb 2018 18:53:08 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 09 Feb 2018 18:53:08 +0100
changeset 6124
8467f7d4b567
parent 6123
39cd368143db
child 6125
bb1c79bf4f33

Fixed an issue with the pip list dialog related to correct enabled status of the buttons.

Plugins/UiExtensionPlugins/PipInterface/PipListDialog.py file | annotate | diff | comparison | revisions
--- a/Plugins/UiExtensionPlugins/PipInterface/PipListDialog.py	Thu Feb 08 18:58:07 2018 +0100
+++ b/Plugins/UiExtensionPlugins/PipInterface/PipListDialog.py	Fri Feb 09 18:53:08 2018 +0100
@@ -253,6 +253,8 @@
         self.buttonBox.button(QDialogButtonBox.Cancel).setEnabled(True)
         self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True)
         self.__refreshButton.setEnabled(False)
+        if self.__upgradeAllButton is not None:
+            self.__upgradeAllButton.setEnabled(False)
         QApplication.processEvents()
         
         QApplication.setOverrideCursor(Qt.WaitCursor)

eric ide

mercurial