Change the state of the enable button after an un-/install

Contributes to: CURA-8587
This commit is contained in:
Jelle Spijker 2021-12-03 17:21:38 +01:00
parent 6f99313ca5
commit c937337324
No known key found for this signature in database
GPG key ID: 6662DC033BE6B99A

View file

@ -315,6 +315,7 @@ class PackageModel(QObject):
if value != self._is_installed:
self._is_installed = value
self.manageInstallStateChanged.emit()
self.manageEnableStateChanged.emit()
@pyqtProperty(str, notify = manageInstallStateChanged)
def manageInstallState(self) -> str: