Remove reply hanlder to prevent crash after canceling a printing job

CURA-4960
This commit is contained in:
Aleksei S 2018-03-06 12:39:54 +01:00
parent 9901780dbc
commit 1f883f3312

View file

@ -194,6 +194,7 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice):
# the "reply" should be disconnected # the "reply" should be disconnected
if self._latest_reply_handler: if self._latest_reply_handler:
self._latest_reply_handler.disconnect() self._latest_reply_handler.disconnect()
self._latest_reply_handler = None
@pyqtSlot() @pyqtSlot()