mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 15:44:04 -06:00
Fix another case of scene node checking by subclass, related to CURA-4780
This commit is contained in:
parent
78b9a14007
commit
5936ebaa80
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ class OneAtATimeIterator(Iterator.Iterator):
|
||||||
def _fillStack(self):
|
def _fillStack(self):
|
||||||
node_list = []
|
node_list = []
|
||||||
for node in self._scene_node.getChildren():
|
for node in self._scene_node.getChildren():
|
||||||
if not type(node) is SceneNode:
|
if not issubclass(type(node), SceneNode):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if node.callDecoration("getConvexHull"):
|
if node.callDecoration("getConvexHull"):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue