Gracefully handle exceptions in arrange

CURA-7785
This commit is contained in:
Jaime van Kessel 2020-11-03 09:48:54 +01:00
parent 8a4bab27cb
commit 526eb8dacd
No known key found for this signature in database
GPG Key ID: 3710727397403C91

View File

@ -1901,9 +1901,10 @@ class CuraApplication(QtApplication):
if select_models_on_load:
Selection.add(node)
arrange(nodes_to_arrange, self.getBuildVolume(), fixed_nodes)
try:
arrange(nodes_to_arrange, self.getBuildVolume(), fixed_nodes)
except:
Logger.logException("e", "Failed to arrange the models")
self.fileCompleted.emit(file_name)
def addNonSliceableExtension(self, extension):