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:
authorjoeydelarago <joeydelarago@gmail.com>2022-08-24 11:23:35 +0300
committerjoeydelarago <joeydelarago@gmail.com>2022-08-24 11:23:35 +0300
commit1e898ff9305a6bdfa702200d813d6b86caa03974 (patch)
treec1af8fb1928236f74a0d0ce74b5ba73984be9970 /cura/Machines
parent91b8c97daed32da95ee8afd962ddcc582f8e6828 (diff)
Remove redundant comment
CURA-9514
Diffstat (limited to 'cura/Machines')
-rw-r--r--cura/Machines/Models/MachineListModel.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/cura/Machines/Models/MachineListModel.py b/cura/Machines/Models/MachineListModel.py
index 5a7dc77673..716238efc4 100644
--- a/cura/Machines/Models/MachineListModel.py
+++ b/cura/Machines/Models/MachineListModel.py
@@ -76,10 +76,6 @@ class MachineListModel(ListModel):
# Remove this machine from the other stack list
other_machine_stacks.remove(stack)
-
- # Filtering must be done like this because searching with findContainerStacks(is_online = "True") does not return
- # stacks that don't have is_online in their metadata. We still want to show these printers.
- # offline_machine_stacks = [stack for stack in offline_machine_stacks if parseBool(stack.getMetaDataEntry("is_online", False))]
for stack in other_machine_stacks:
self.addItem(stack)