From a59c11388766ae4ad7781b357e6f0dc8d1271357 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 18 Apr 2016 14:47:51 +0200 Subject: [PATCH] Added busy & error state to ConnectionState CURA-1339 --- cura/PrinterOutputDevice.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cura/PrinterOutputDevice.py b/cura/PrinterOutputDevice.py index 7b79ad4aa4..7bf992ea83 100644 --- a/cura/PrinterOutputDevice.py +++ b/cura/PrinterOutputDevice.py @@ -306,4 +306,6 @@ class PrinterOutputDevice(OutputDevice, QObject): class ConnectionState(IntEnum): closed = 0 connecting = 1 - connected = 2 \ No newline at end of file + connected = 2 + busy = 3 + error = 4 \ No newline at end of file