Skip to content

Commit

Permalink
Fix regression with enum descriptions now showing up in documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
anvilfolk committed Jul 2, 2023
1 parent 4642448 commit d48636c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion editor/editor_help.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
3 changes: 2 additions & 1 deletion modules/gdscript/editor/gdscript_docgen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ void GDScriptDocGen::generate_docs(GDScript *p_script, const GDP::ClassNode *p_c

p_script->member_lines[name] = m_enum->start_line;

doc.enums[name] = m_enum->doc_description;

for (const GDP::EnumNode::Value &val : m_enum->values) {
DocData::ConstantDoc const_doc;
const_doc.name = val.identifier->name;
Expand All @@ -244,7 +246,6 @@ void GDScriptDocGen::generate_docs(GDScript *p_script, const GDP::ClassNode *p_c
const_doc.description = val.doc_description;
const_doc.enumeration = name;

doc.enums[const_doc.name] = const_doc.description;
doc.constants.push_back(const_doc);
}

Expand Down

0 comments on commit d48636c

Please sign in to comment.