Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostas Karmas <konskarm@gmail.com>2020-10-30 14:49:39 +0300
committerKostas Karmas <konskarm@gmail.com>2020-10-30 14:49:39 +0300
commitc8e3c4ff1224d4f0775cadb0a00b47b36860b55d (patch)
treebd5897638d4c476a94edb98a21303ce1eaec287b
parentadc80729918470c9f096e759eefcc794a5398365 (diff)
Display the queue by default if there are no capabilities
If the capabilities list is missing, display the queue anyway, even if it is always empty CURA-7784
-rw-r--r--plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py
index 0c6ed4548a..82b8c1da62 100644
--- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py
+++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py
@@ -291,7 +291,7 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice):
def supportsPrintJobQueue(self) -> bool:
"""Gets whether the printer supports a queue"""
- return "queue" in self._cluster.capabilities if self._cluster.capabilities else False
+ return "queue" in self._cluster.capabilities if self._cluster.capabilities else True
def setJobState(self, print_job_uuid: str, state: str) -> None:
"""Set the remote print job state."""