mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Remove incorrect maximum extruder count check
CURA-4188
This commit is contained in:
parent
16cfb768d2
commit
b20711ef7c
1 changed files with 0 additions and 4 deletions
|
|
@ -67,10 +67,6 @@ class GlobalStack(CuraContainerStack):
|
|||
extruder.id, self.id)
|
||||
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")
|
||||
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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue