mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
User changes are deserialized by workspacereader if there is no machine conflict
CURA-1263
This commit is contained in:
parent
bde1e05273
commit
ef7004fb72
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
|||
if not user_containers:
|
||||
containers_to_add.append(instance_container)
|
||||
else:
|
||||
if self._resolve_strategies["machine"] == "override":
|
||||
if self._resolve_strategies["machine"] == "override" or self._resolve_strategies["machine"] is None:
|
||||
user_containers[0].deserialize(archive.open(instance_container_file).read().decode("utf-8"))
|
||||
elif self._resolve_strategies["machine"] == "new":
|
||||
# The machine is going to get a spiffy new name, so ensure that the id's of user settings match.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue