Add missing return

This caused the slicing to not be correctly aborted when the primetower was
in the wrong location

CURA-8499
This commit is contained in:
Jaime van Kessel 2021-08-30 13:10:10 +02:00
parent e9e34b5448
commit 43fd38e48e

View file

@ -468,6 +468,7 @@ class CuraEngineBackend(QObject, Backend):
self._error_message.show()
self.setState(BackendState.Error)
self.backendError.emit(job)
return
else:
self.setState(BackendState.NotStarted)