Removed unneeded getMeshData call

CURA-1622
This commit is contained in:
Jaime van Kessel 2016-07-21 13:20:37 +02:00
parent 8eef34ac45
commit 6602177102

View File

@ -854,7 +854,7 @@ class CuraApplication(QtApplication):
# TODO; This needs to be fixed properly. We now make the assumption that we only load a single mesh!
mesh_data = job.getResult().getMeshData()
if mesh_data:
job._node.setMeshData(job.getResult().getMeshData())
job._node.setMeshData(mesh_data)
else:
Logger.log("w", "Could not find a mesh in reloaded node.")