mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-06-04 11:14:21 +08:00
Do not report progress if the option is not set
This commit is contained in:
parent
089aad3241
commit
a27cb80531
@ -108,7 +108,10 @@ class CuraEngineBackend(Backend):
|
||||
|
||||
self._slicing = True
|
||||
self.slicingStarted.emit()
|
||||
self.processingProgress.emit(0.0)
|
||||
|
||||
self._report_progress = kwargs.get('report_progress', True)
|
||||
if self._report_progress:
|
||||
self.processingProgress.emit(0.0)
|
||||
|
||||
self._sendSettings(kwargs.get('settings', self._settings))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user