From 0b9af6055cdf0fcf6f9c0fb9c0e364c3524f1cf9 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 17 Jun 2016 11:34:54 +0200 Subject: [PATCH] Decreased sample time for print information CURA-1036 --- NetworkPrinterOutputDevice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NetworkPrinterOutputDevice.py b/NetworkPrinterOutputDevice.py index fc6a75dde0..7802767647 100644 --- a/NetworkPrinterOutputDevice.py +++ b/NetworkPrinterOutputDevice.py @@ -71,7 +71,7 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice): self._error_message = None self._update_timer = QTimer() - self._update_timer.setInterval(5000) # TODO; Add preference for update interval + self._update_timer.setInterval(2000) # TODO; Add preference for update interval self._update_timer.setSingleShot(False) self._update_timer.timeout.connect(self._update)