mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 04:29:01 +08:00
Remove incorrect maximum extruder count check
CURA-4188
This commit is contained in:
parent
16cfb768d2
commit
b20711ef7c
@ -67,10 +67,6 @@ class GlobalStack(CuraContainerStack):
|
|||||||
extruder.id, self.id)
|
extruder.id, self.id)
|
||||||
return
|
return
|
||||||
|
|
||||||
if extruder_count and len(self._extruders) + 1 > extruder_count:
|
|
||||||
Logger.log("w", "Adding extruder {meta} to {id} but its extruder count is {count}".format(id = self.id, count = extruder_count, meta = str(extruder.getMetaData())))
|
|
||||||
return
|
|
||||||
|
|
||||||
position = extruder.getMetaDataEntry("position")
|
position = extruder.getMetaDataEntry("position")
|
||||||
if position is None:
|
if position is None:
|
||||||
Logger.log("w", "No position defined for extruder {extruder}, cannot add it to stack {stack}", extruder = extruder.id, stack = self.id)
|
Logger.log("w", "No position defined for extruder {extruder}, cannot add it to stack {stack}", extruder = extruder.id, stack = self.id)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user