This commit is contained in:
Jaime van Kessel 2019-09-16 09:26:12 +02:00
parent 0ff9d72c4c
commit 0f8dfeafc1
No known key found for this signature in database
GPG key ID: 3710727397403C91

View file

@ -270,7 +270,7 @@ class BuildVolume(SceneNode):
# Mark the node as outside build volume if the set extruder is disabled
extruder_position = node.callDecoration("getActiveExtruderPosition")
try:
if not self._global_container_stack.extrudersList[int(extruder_position)].isEnabled:
if not self._global_container_stack.extruderList[int(extruder_position)].isEnabled:
node.setOutsideBuildArea(True)
continue
except IndexError: