mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
When an error check finishes, only trigger auto-slicing if needed
CURA-4092 Many things can trigger an error check, but Cura should only auto-slice if the error check was scheduled due to a value change.
This commit is contained in:
parent
c16bfa8949
commit
439f3e5029
1 changed files with 3 additions and 2 deletions
|
@ -453,8 +453,9 @@ class CuraEngineBackend(QObject, Backend):
|
|||
|
||||
def _onStackErrorCheckFinished(self):
|
||||
self._is_error_check_scheduled = False
|
||||
self.needsSlicing()
|
||||
self._onChanged()
|
||||
if self._need_slicing:
|
||||
self.needsSlicing()
|
||||
self._onChanged()
|
||||
|
||||
## Called when a sliced layer data message is received from the engine.
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue