Merge pull request #70503 from rune-scape/inner-class-docs

Inner classes get their docs back
This commit is contained in:
Rémi Verschelde 2023-01-03 12:15:44 +01:00
commit a797fa3b3d
No known key found for this signature in database
GPG key ID: C3336907360768E1
2 changed files with 8 additions and 4 deletions

View file

@ -629,6 +629,10 @@ void GDScript::_update_doc() {
}
}
for (KeyValue<StringName, Ref<GDScript>> &E : subclasses) {
E.value->_update_doc();
}
_add_doc(doc);
}
#endif