We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d90d700 commit 1f4ba75Copy full SHA for 1f4ba75
cura/Scene/SliceableObjectDecorator.py
@@ -25,7 +25,8 @@ def __init__(self) -> None:
25
26
from cura.CuraApplication import CuraApplication
27
application = CuraApplication.getInstance()
28
- application.getMachineManager().extruderChanged.connect(self._updateIsAssignedToDisabledExtruder)
+ if application is not None:
29
+ application.getMachineManager().extruderChanged.connect(self._updateIsAssignedToDisabledExtruder)
30
self._painted_extruders: Optional[List[int]] = None
31
32
self.paintTextureChanged = Signal()
0 commit comments