diff options
author | Danil Alexeev <danil@alexeev.xyz> | 2024-04-15 22:10:47 +0300 |
---|---|---|
committer | Danil Alexeev <danil@alexeev.xyz> | 2024-05-13 17:49:06 +0300 |
commit | 76b2d85c9fb10426fad78a8d2dbafd8ca08a4b89 (patch) | |
tree | 618818f4db09b0b9eec45e42f7316c406fcc64b4 /editor/editor_help.cpp | |
parent | bdc0316217940a8ccc80ce536547d42e6477adf4 (diff) | |
download | redot-engine-76b2d85c9fb10426fad78a8d2dbafd8ca08a4b89.tar.gz |
GDScript: Fix some export annotation issues
Diffstat (limited to 'editor/editor_help.cpp')
-rw-r--r-- | editor/editor_help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index d0ad0e8b11..b497f23d21 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -1967,7 +1967,7 @@ void EditorHelp::_update_doc() { class_desc->add_text(argument.name); class_desc->add_text(": "); - _add_type(argument.type); + _add_type(argument.type, argument.enumeration, argument.is_bitfield); if (!argument.default_value.is_empty()) { class_desc->push_color(theme_cache.symbol_color); |