From 1d2f7b3c3651000c8a2c936ba536474dd0e86bf8 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 8 Jul 2016 15:54:39 +0200 Subject: [PATCH] Added logging to indicate reload all failed CURA-1622 --- cura/CuraApplication.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 7a12df320c..c96bea352b 100644 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -695,15 +695,14 @@ class CuraApplication(QtApplication): return for node in nodes: - if not node.getMeshData(): - continue - file_name = node.getMeshData().getFileName() if file_name: job = ReadMeshJob(file_name) job._node = node job.finished.connect(self._reloadMeshFinished) job.start() + else: + Logger.log("w", "Unable to reload data because we don't have a filename.") ## Get logging data of the backend engine # \returns \type{string} Logging data