mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 10:01:15 +00:00
Fix regression with enum descriptions now showing up in documentation.
This commit is contained in:
parent
46424488ed
commit
d48636c3bf
2 changed files with 3 additions and 2 deletions
|
|
@ -1367,7 +1367,7 @@ void EditorHelp::_update_doc() {
|
|||
class_desc->add_newline();
|
||||
|
||||
// Enum description.
|
||||
if (e != "@unnamed_enums" && cd.enums.has(e)) {
|
||||
if (e != "@unnamed_enums" && cd.enums.has(e) && !cd.enums[e].strip_edges().is_empty()) {
|
||||
class_desc->push_color(theme_cache.text_color);
|
||||
_push_normal_font();
|
||||
class_desc->push_indent(1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue