mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Added logging to indicate reload all failed
CURA-1622
This commit is contained in:
parent
d2ad1ad153
commit
1d2f7b3c36
1 changed files with 2 additions and 3 deletions
|
|
@ -695,15 +695,14 @@ class CuraApplication(QtApplication):
|
||||||
return
|
return
|
||||||
|
|
||||||
for node in nodes:
|
for node in nodes:
|
||||||
if not node.getMeshData():
|
|
||||||
continue
|
|
||||||
|
|
||||||
file_name = node.getMeshData().getFileName()
|
file_name = node.getMeshData().getFileName()
|
||||||
if file_name:
|
if file_name:
|
||||||
job = ReadMeshJob(file_name)
|
job = ReadMeshJob(file_name)
|
||||||
job._node = node
|
job._node = node
|
||||||
job.finished.connect(self._reloadMeshFinished)
|
job.finished.connect(self._reloadMeshFinished)
|
||||||
job.start()
|
job.start()
|
||||||
|
else:
|
||||||
|
Logger.log("w", "Unable to reload data because we don't have a filename.")
|
||||||
|
|
||||||
## Get logging data of the backend engine
|
## Get logging data of the backend engine
|
||||||
# \returns \type{string} Logging data
|
# \returns \type{string} Logging data
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue