Merge pull request #13165 from Ultimaker/CURA-8463_cloud_configuration

Show all configurations in "abstract" printer from cloud
This commit is contained in:
Remco Burema 2022-08-31 14:50:13 +02:00 committed by GitHub
commit a713b1e9e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 400 additions and 193 deletions

View file

@ -99,7 +99,8 @@ class MachineListModel(ListModel):
if self._show_cloud_printers:
self.addItem(stack)
# Remove this machine from the other stack list
other_machine_stacks.remove(stack)
if stack in other_machine_stacks:
other_machine_stacks.remove(stack)
if len(abstract_machine_stacks) > 0:
if self._show_cloud_printers: