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
path: root/cura/UI
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2019-05-23 17:04:39 +0300
committerJaime van Kessel <nallath@gmail.com>2019-05-23 17:04:39 +0300
commit71d156b175b278194abd9835e8b9e0431e9132ed (patch)
treeb74a9314acc40423d63e6c1b3b4e827c6e045a1f /cura/UI
parent4a6495a0e634187f931b0989d1d0a1b9f2abfc94 (diff)
Remove unneeded check
CURA-6283
Diffstat (limited to 'cura/UI')
-rw-r--r--cura/UI/ObjectsModel.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/cura/UI/ObjectsModel.py b/cura/UI/ObjectsModel.py
index 67930d676b..9c6891aa41 100644
--- a/cura/UI/ObjectsModel.py
+++ b/cura/UI/ObjectsModel.py
@@ -84,8 +84,6 @@ class ObjectsModel(ListModel):
group_name_prefix = group_name_template.split("#")[0]
for node in DepthFirstIterator(Application.getInstance().getController().getScene().getRoot()): # type: ignore
- if not isinstance(node, SceneNode):
- continue
if (not node.getMeshData() and not node.callDecoration("getLayerData")) and not node.callDecoration("isGroup"):
continue