From bc47c6e623c5b05ad954e8f31104a8acb2a548bb Mon Sep 17 00:00:00 2001 From: Ian Paschal Date: Thu, 15 Feb 2018 11:20:46 +0100 Subject: [PATCH] Fix for CURA-4963 Exclude buildplate and nozzle meshes from being reloaded on F5 press. --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 87bc4532a8..07b3aab60c 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1294,7 +1294,7 @@ class CuraApplication(QtApplication): Logger.log("i", "Reloading all loaded mesh data.") nodes = [] for node in DepthFirstIterator(self.getController().getScene().getRoot()): - if not isinstance(node, SceneNode) or not node.getMeshData(): + if not isinstance(node, CuraSceneNode) or not node.getMeshData(): continue nodes.append(node)