From 0d9355daabea36db8e097d35c802219dfdee5fc3 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 12 Dec 2016 11:07:29 +0100 Subject: [PATCH] All added containers are now set as dirty, so they are saved CURA-1263 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 46806cf54d..1454dc9a47 100644 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -291,6 +291,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): # Add all the containers right before we try to add / serialize the stack for container in containers_to_add: self._container_registry.addContainer(container) + container.setDirty(True) # Get the stack(s) saved in the workspace. Logger.log("d", "Workspace loading is checking stacks containers...")