diff options
author | Hilderin <81109165+Hilderin@users.noreply.github.com> | 2024-09-18 19:37:12 -0400 |
---|---|---|
committer | Hilderin <81109165+Hilderin@users.noreply.github.com> | 2024-09-20 12:12:24 -0400 |
commit | 96382204736cbc131fbc2640ba6ba238c53017c0 (patch) | |
tree | 5f9772f97c50b8f6f8ac4a7a4b3650d6a38379d5 /editor/editor_node.cpp | |
parent | 694d3c2930bdfb43fd93e1e6641f66c4f19a5c77 (diff) | |
download | redot-engine-96382204736cbc131fbc2640ba6ba238c53017c0.tar.gz |
Fix reloading scripts already in use
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r-- | editor/editor_node.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 0c21f3c2cd..3b5ee34659 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -926,11 +926,7 @@ void EditorNode::_resources_changed(const Vector<String> &p_resources) { } if (!res->editor_can_reload_from_file()) { - Ref<Script> scr = res; - // Scripts are reloaded via the script editor. - if (scr.is_null() || ScriptEditor::get_singleton()->get_open_scripts().has(scr)) { - continue; - } + continue; } if (!res->get_path().is_resource_file() && !res->get_path().is_absolute_path()) { continue; |