diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2023-05-05 14:37:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-05 14:37:54 +0200 |
commit | f6bf51ca49ed0073a3c34054a7ab583faff2d3ec (patch) | |
tree | 9862a3c2439d3782d39b101e94b4a2b515b44de0 /editor/editor_data.cpp | |
parent | 39d85308fdc7c44b25b4d8f57a958cafefdfe323 (diff) | |
parent | aaf02ec04a8ef053a359bc2f4cc3f1747448a4a3 (diff) | |
download | redot-engine-f6bf51ca49ed0073a3c34054a7ab583faff2d3ec.tar.gz |
Merge pull request #75864 from KoBeWi/assassin_of_shaders
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r-- | editor/editor_data.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp index 1f9d754185..753f54b807 100644 --- a/editor/editor_data.cpp +++ b/editor/editor_data.cpp @@ -622,7 +622,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); |