mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Move initialization of found_solution_for_all
Initialize the variable found_solution_for_all with False and don't set it a the exception block.
This commit is contained in:
parent
c3833c2ff8
commit
afb90b4b2e
1 changed files with 1 additions and 1 deletions
|
@ -21,6 +21,7 @@ class ArrangeObjectsJob(Job):
|
||||||
self._min_offset = min_offset
|
self._min_offset = min_offset
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
|
found_solution_for_all = False
|
||||||
status_message = Message(i18n_catalog.i18nc("@info:status", "Finding new location for objects"),
|
status_message = Message(i18n_catalog.i18nc("@info:status", "Finding new location for objects"),
|
||||||
lifetime = 0,
|
lifetime = 0,
|
||||||
dismissable = False,
|
dismissable = False,
|
||||||
|
@ -31,7 +32,6 @@ class ArrangeObjectsJob(Job):
|
||||||
try:
|
try:
|
||||||
found_solution_for_all = arrange(self._nodes, Application.getInstance().getBuildVolume(), self._fixed_nodes)
|
found_solution_for_all = arrange(self._nodes, Application.getInstance().getBuildVolume(), self._fixed_nodes)
|
||||||
except: # If the thread crashes, the message should still close
|
except: # If the thread crashes, the message should still close
|
||||||
found_solution_for_all = False
|
|
||||||
Logger.logException("e", "Unable to arrange the objects on the buildplate. The arrange algorithm has crashed.")
|
Logger.logException("e", "Unable to arrange the objects on the buildplate. The arrange algorithm has crashed.")
|
||||||
|
|
||||||
status_message.hide()
|
status_message.hide()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue