From 58c3f5dc89a1e364d58c59aaf0d141195b1825c5 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 29 Jun 2016 13:31:42 +0200 Subject: [PATCH] Closing the networkprinteroutput device now hides all it's messages CURA-49 --- NetworkPrinterOutputDevice.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/NetworkPrinterOutputDevice.py b/NetworkPrinterOutputDevice.py index 9bb77c46e1..94ede5add3 100644 --- a/NetworkPrinterOutputDevice.py +++ b/NetworkPrinterOutputDevice.py @@ -182,6 +182,11 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice): def close(self): self.setConnectionState(ConnectionState.closed) + self._progress_message.hide() + self._authentication_requested_message.hide() + self._error_message.hide() + self._authentication_counter = 0 + self._authentication_timer.stop() self._update_timer.stop() self._camera_timer.stop()