Merge branch 'master' into feature_setting_visibility_profiles

This commit is contained in:
fieldOfView 2018-02-15 11:56:36 +01:00
commit 85aed830a6
8 changed files with 17 additions and 8 deletions

View file

@ -1204,7 +1204,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)