summaryrefslogtreecommitdiffstats
path: root/editor/editor_data.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2023-04-09 20:43:55 +0200
committerkobewi <kobewi4e@gmail.com>2023-04-09 22:10:43 +0200
commitaaf02ec04a8ef053a359bc2f4cc3f1747448a4a3 (patch)
tree4c99bfa7a33ef1842abfa55a77e667a6c03c05d1 /editor/editor_data.cpp
parente684d126ed605899267ee37cc143f072b93b4d04 (diff)
downloadredot-engine-aaf02ec04a8ef053a359bc2f4cc3f1747448a4a3.tar.gz
Close built-in shaders when closing scene
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r--editor/editor_data.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp
index cfe382bcd3..a22c21d754 100644
--- a/editor/editor_data.cpp
+++ b/editor/editor_data.cpp
@@ -598,7 +598,7 @@ void EditorData::remove_scene(int p_idx) {
}
if (!edited_scene[p_idx].path.is_empty()) {
- ScriptEditor::get_singleton()->close_builtin_scripts_from_scene(edited_scene[p_idx].path);
+ EditorNode::get_singleton()->emit_signal("scene_closed", edited_scene[p_idx].path);
}
undo_redo_manager->discard_history(edited_scene[p_idx].history_id);