mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-04 08:11:09 -07:00
Merge pull request #8678 from Ultimaker/CURA-7383
Gracefully handle exceptions in arrange
This commit is contained in:
commit
6b38695c22
1 changed files with 4 additions and 3 deletions
|
|
@ -1901,9 +1901,10 @@ class CuraApplication(QtApplication):
|
||||||
|
|
||||||
if select_models_on_load:
|
if select_models_on_load:
|
||||||
Selection.add(node)
|
Selection.add(node)
|
||||||
|
try:
|
||||||
arrange(nodes_to_arrange, self.getBuildVolume(), fixed_nodes)
|
arrange(nodes_to_arrange, self.getBuildVolume(), fixed_nodes)
|
||||||
|
except:
|
||||||
|
Logger.logException("e", "Failed to arrange the models")
|
||||||
self.fileCompleted.emit(file_name)
|
self.fileCompleted.emit(file_name)
|
||||||
|
|
||||||
def addNonSliceableExtension(self, extension):
|
def addNonSliceableExtension(self, extension):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue