From 87587ffd40c4a7c797798b84a94f0f01df4ef261 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 28 Nov 2016 14:11:44 +0100 Subject: [PATCH] Fix reloading meshes Not tested with 3MF, but for normal cases this should hotfix it. --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index e8c8ba981a..04c7feedc7 100644 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1000,7 +1000,7 @@ class CuraApplication(QtApplication): def _reloadMeshFinished(self, job): # TODO; This needs to be fixed properly. We now make the assumption that we only load a single mesh! - mesh_data = job.getResult().getMeshData() + mesh_data = job.getResult()[0].getMeshData() if mesh_data: job._node.setMeshData(mesh_data) else: