From 5a9bcf446e9b34db6d54127e8847126f696a6ba5 Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Mon, 19 Mar 2018 17:52:40 +0100 Subject: [PATCH] Do not select parented nodes when selecting all --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 6351d43c79..98c682a8a3 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1105,7 +1105,7 @@ class CuraApplication(QtApplication): continue if not node.getMeshData() and not node.callDecoration("isGroup"): continue # Node that doesnt have a mesh and is not a group. - if node.getParent() and node.getParent().callDecoration("isGroup"): + if node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent().callDecoration("isSliceable"): continue # Grouped nodes don't need resetting as their parent (the group) is resetted) if not node.isSelectable(): continue # i.e. node with layer data