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-24 16:27:08 +0300
committerJaime van Kessel <nallath@gmail.com>2019-05-24 16:27:08 +0300
commit66d8e410640d42ecdb47f7e0e1648eb22fc616d9 (patch)
tree9b5de7bf8a521d533a626d1d3b1465ad4087b2b2 /cura/UI
parent6cc8b8c18403bf86700d81f52ac3cddb5a4a0fc3 (diff)
Also add tests for the update of the objects mode
CURA-6283
Diffstat (limited to 'cura/UI')
-rw-r--r--cura/UI/ObjectsModel.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cura/UI/ObjectsModel.py b/cura/UI/ObjectsModel.py
index 00f9a2d298..f3983e7965 100644
--- a/cura/UI/ObjectsModel.py
+++ b/cura/UI/ObjectsModel.py
@@ -122,6 +122,7 @@ class ObjectsModel(ListModel):
for node in DepthFirstIterator(Application.getInstance().getController().getScene().getRoot()): # type: ignore
if not self._shouldNodeBeHandled(node):
continue
+
is_group = bool(node.callDecoration("isGroup"))
force_rename = False