From 79ee928883c76773fd34bc55cd769cf031d109b1 Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Thu, 30 Jun 2016 09:54:08 +0200 Subject: [PATCH] Change progress to percentages CURA-1036 --- NetworkPrinterOutputDevice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NetworkPrinterOutputDevice.py b/NetworkPrinterOutputDevice.py index f62fc6df5a..b616613dce 100644 --- a/NetworkPrinterOutputDevice.py +++ b/NetworkPrinterOutputDevice.py @@ -343,7 +343,7 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice): ## If progress is 0 add a bit so another print can't be sent. if progress == 0: progress += 0.001 - self.setProgress(progress) + self.setProgress(progress * 100) self._updateJobState(json_data["state"]) self.setTimeElapsed(json_data["time_elapsed"]) self.setTimeTotal(json_data["time_total"])