From 57b12c10ab01ee9d13c1be67f5b557b787e3279f Mon Sep 17 00:00:00 2001 From: Tomasz Chabora Date: Tue, 12 Nov 2019 14:09:58 +0100 Subject: Prevent crash when scene has path, but no file --- editor/editor_folding.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/editor/editor_folding.cpp b/editor/editor_folding.cpp index 96653fec70..9f13049a6b 100644 --- a/editor/editor_folding.cpp +++ b/editor/editor_folding.cpp @@ -135,6 +135,10 @@ void EditorFolding::_fill_folds(const Node *p_root, const Node *p_node, Array &p } void EditorFolding::save_scene_folding(const Node *p_scene, const String &p_path) { + FileAccessRef file_check = FileAccess::create(FileAccess::ACCESS_RESOURCES); + if (!file_check->file_exists(p_path)) //This can happen when creating scene from FilesystemDock. It has path, but no file. + return; + Ref config; config.instance(); -- cgit v1.2.3