Remove copying 1st extruder value to all extruders as that breaks re-loading from files

This commit is contained in:
ChrisTerBeke 2018-01-22 16:05:43 +01:00
parent 20ab6265c8
commit e17fbb0db2

View file

@ -62,11 +62,6 @@ class ExtruderStack(CuraContainerStack):
# Only copy the value when this extruder doesn't have the value.
if self.definitionChanges.hasProperty(key, "value"):
# If the first extruder has a value for this setting, we must copy it to the other extruders via the global stack.
# Note: this assumes the extruders are loaded in the same order as they are positioned on the machine.
if self.getMetaDataEntry("position") == "0":
setting_value = self.definitionChanges.getProperty(key, "value")
stack.definitionChanges.setProperty(key, "value", setting_value)
continue
setting_value = stack.definitionChanges.getProperty(key, "value")