Remove the cluster connection type

CURA-6011
This commit is contained in:
Jaime van Kessel 2018-12-14 17:14:56 +01:00
parent 226d052468
commit b8a4d8e80d
3 changed files with 3 additions and 4 deletions

View file

@ -54,7 +54,7 @@ class PrintersModel(ListModel):
for container_stack in container_stacks:
connection_type = container_stack.getMetaDataEntry("connection_type")
has_remote_connection = connection_type in [str(ConnectionType.NetworkConnection), str(ConnectionType.CloudConnection), str(ConnectionType.ClusterConnection)]
has_remote_connection = connection_type in [str(ConnectionType.NetworkConnection), str(ConnectionType.CloudConnection)]
# TODO: Remove reference to connect group name.
items.append({"name": container_stack.getMetaDataEntry("connect_group_name", container_stack.getName()),