From 1f883f331216c4a39ee2611775d98c39a4562ca8 Mon Sep 17 00:00:00 2001 From: Aleksei S Date: Tue, 6 Mar 2018 12:39:54 +0100 Subject: [PATCH] Remove reply hanlder to prevent crash after canceling a printing job CURA-4960 --- plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py b/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py index c0d538bb78..73acc02cae 100644 --- a/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py +++ b/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py @@ -194,6 +194,7 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): # the "reply" should be disconnected if self._latest_reply_handler: self._latest_reply_handler.disconnect() + self._latest_reply_handler = None @pyqtSlot()