mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Fixed pause slicing not working when moving an object
CURA-3361
This commit is contained in:
parent
28a3858bc2
commit
fce9df756c
1 changed files with 5 additions and 4 deletions
|
@ -192,6 +192,7 @@ class CuraEngineBackend(Backend):
|
|||
|
||||
|
||||
def pauseSlicing(self):
|
||||
if not self._pause_slicing:
|
||||
self.close()
|
||||
self._pause_slicing = True
|
||||
self.backendStateChange.emit(BackendState.Disabled)
|
||||
|
@ -328,7 +329,7 @@ class CuraEngineBackend(Backend):
|
|||
|
||||
self._block_slicing = block_slicing
|
||||
|
||||
if should_pause and self._block_slicing:
|
||||
if should_pause or self._block_slicing:
|
||||
self.pauseSlicing()
|
||||
else:
|
||||
self.continueSlicing()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue