Progress is now only emitted if it changed

CURA-1339
This commit is contained in:
Jaime van Kessel 2016-04-19 12:04:22 +02:00
parent 232e447a74
commit d33a75906a

View File

@ -298,8 +298,9 @@ class PrinterOutputDevice(OutputDevice, QObject):
## Set the progress of any currently active process
# /param progress Progress of the process.
def setProgress(self, progress):
self._progress = progress
self.progressChanged.emit()
if self._progress != progress:
self._progress = progress
self.progressChanged.emit()
## The current processing state of the backend.