From c00775c4889f00cad3dd753c8c3ac15c66d125e5 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 23 Nov 2016 16:36:09 +0100 Subject: [PATCH] Bounding box will no longer sing first part of batman theme CURA-2963 --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index ff70a2e25c..7be20305c4 100644 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -632,7 +632,7 @@ class CuraApplication(QtApplication): if not scene_bounding_box: scene_bounding_box = AxisAlignedBox.Null - if repr(self._scene_bounding_box) != repr(scene_bounding_box): + if repr(self._scene_bounding_box) != repr(scene_bounding_box) and scene_bounding_box.isValid(): self._scene_bounding_box = scene_bounding_box self.sceneBoundingBoxChanged.emit()