diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 0410d8670d..04e13165ef 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -48,7 +48,7 @@ class Snapshot: # determine zoom and look at bbox = None for node in DepthFirstIterator(root): - if hasattr(node, "_outside_buildarea") and not node._outside_buildarea: + if not getattr(node, "_outside_buildarea", False): if node.callDecoration("isSliceable") and node.getMeshData() and node.isVisible() and not node.callDecoration("isNonThumbnailVisibleMesh"): if bbox is None: bbox = node.getBoundingBox()