Replace all user changed values

Removed check to change the values only if they were different
This commit is contained in:
Guillem 2018-03-22 15:49:30 +01:00
parent 01ec20f5ce
commit fecbf82551

View File

@ -560,7 +560,6 @@ class MachineManager(QObject):
new_value = self._active_container_stack.getProperty(key, "value")
# check if the value has to be replaced
if extruder_stack.getProperty(key, "value") != new_value:
extruder_stack.userChanges.setProperty(key, "value", new_value)
@pyqtProperty(str, notify = activeVariantChanged)