mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-18 20:28:01 -06:00
Always set busy = False
on installed package
CURA-8587
This commit is contained in:
parent
5f444fa5b7
commit
aea316799a
1 changed files with 1 additions and 1 deletions
|
@ -343,7 +343,7 @@ class PackageModel(QObject):
|
||||||
def _packageInstalled(self, package_id: str) -> None:
|
def _packageInstalled(self, package_id: str) -> None:
|
||||||
if self._package_id != package_id:
|
if self._package_id != package_id:
|
||||||
return
|
return
|
||||||
self.setBusy(not self._is_busy)
|
self.setBusy(False)
|
||||||
try:
|
try:
|
||||||
self.stateManageButtonChanged.emit()
|
self.stateManageButtonChanged.emit()
|
||||||
except RuntimeError:
|
except RuntimeError:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue