summaryrefslogtreecommitdiffstats
path: root/editor/editor_file_system.cpp
diff options
context:
space:
mode:
authorocean <anvilfolk@gmail.com>2024-10-01 15:44:15 -0400
committerocean <anvilfolk@gmail.com>2024-10-01 20:06:28 -0400
commit0ad55e964fb288b47a6f26a6eb983c86d635cda7 (patch)
tree9ef32956c8e5cf024b62b32c972804148243d6b2 /editor/editor_file_system.cpp
parentf4af8201bac157b9d47e336203d3e8a8ef729de2 (diff)
downloadredot-engine-0ad55e964fb288b47a6f26a6eb983c86d635cda7.tar.gz
Fix GDScript docs not updating when modified externally
Diffstat (limited to 'editor/editor_file_system.cpp')
-rw-r--r--editor/editor_file_system.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/editor/editor_file_system.cpp b/editor/editor_file_system.cpp
index afa0548044..2d1a914120 100644
--- a/editor/editor_file_system.cpp
+++ b/editor/editor_file_system.cpp
@@ -2089,12 +2089,11 @@ void EditorFileSystem::_update_script_documentation() {
// return the last loaded version of the script (without the modifications).
scr->reload_from_file();
}
- Vector<DocData::ClassDoc> docs = scr->get_documentation();
- for (int j = 0; j < docs.size(); j++) {
- EditorHelp::get_doc_data()->add_doc(docs[j]);
+ for (const DocData::ClassDoc &cd : scr->get_documentation()) {
+ EditorHelp::get_doc_data()->add_doc(cd);
if (!first_scan) {
// Update the documentation in the Script Editor if it is open.
- ScriptEditor::get_singleton()->update_doc(docs[j].name);
+ ScriptEditor::get_singleton()->update_doc(cd.name);
}
}
}