diff options
author | rune-scape <allie.smith.epic@gmail.com> | 2022-12-23 17:39:24 -0500 |
---|---|---|
committer | rune-scape <allie.smith.epic@gmail.com> | 2022-12-23 17:39:24 -0500 |
commit | 1b77993257c5fff14151dc21407cce9404db18ee (patch) | |
tree | 38fd1ebf4bbdb8946abb9e3a816bd8092003deaf /modules/gdscript/gdscript.cpp | |
parent | 0bb94df247a0a0c22333e2e99744fc3fd184601a (diff) | |
download | redot-engine-1b77993257c5fff14151dc21407cce9404db18ee.tar.gz |
Inner classes get their docs back
Diffstat (limited to 'modules/gdscript/gdscript.cpp')
-rw-r--r-- | modules/gdscript/gdscript.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript.cpp b/modules/gdscript/gdscript.cpp index 57a29cc81e..31f6c40fd0 100644 --- a/modules/gdscript/gdscript.cpp +++ b/modules/gdscript/gdscript.cpp @@ -629,6 +629,10 @@ void GDScript::_update_doc() { } } + for (KeyValue<StringName, Ref<GDScript>> &E : subclasses) { + E.value->_update_doc(); + } + _add_doc(doc); } #endif |