mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Skip nodes in modelchecker without active extruder
Fixes CURA-5S
This commit is contained in:
parent
e4930d3c3b
commit
68d70734ee
1 changed files with 2 additions and 0 deletions
|
@ -73,6 +73,8 @@ class ModelChecker(QObject, Extension):
|
||||||
# Check node material shrinkage and bounding box size
|
# Check node material shrinkage and bounding box size
|
||||||
for node in self.sliceableNodes():
|
for node in self.sliceableNodes():
|
||||||
node_extruder_position = node.callDecoration("getActiveExtruderPosition")
|
node_extruder_position = node.callDecoration("getActiveExtruderPosition")
|
||||||
|
if node_extruder_position is None:
|
||||||
|
continue
|
||||||
|
|
||||||
# This function can be triggered in the middle of a machine change, so do not proceed if the machine change
|
# This function can be triggered in the middle of a machine change, so do not proceed if the machine change
|
||||||
# has not done yet.
|
# has not done yet.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue