mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 03:07:53 -06:00
Remove superfluous pyqtSlot marking
This can already be set via the isLoading property. What's more, it really only ever needs to be called from Python. I just added the fset because we have the setter anyway. Contributes to issue CURA-8556.
This commit is contained in:
parent
476321be5c
commit
6b6b6f613f
1 changed files with 0 additions and 1 deletions
|
@ -66,7 +66,6 @@ class PackageList(ListModel):
|
|||
|
||||
isLoadingChanged = pyqtSignal()
|
||||
|
||||
@pyqtSlot(bool)
|
||||
def setIsLoading(self, is_loading: bool) -> None:
|
||||
if is_loading != self._is_loading:
|
||||
self._is_loading = is_loading
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue