summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorMax Hilbrunner <mhilbrunner@users.noreply.github.com>2022-08-20 00:57:01 +0200
committerGitHub <noreply@github.com>2022-08-20 00:57:01 +0200
commit79717dcb467bfabe7b47646319ac6dae16eb60ac (patch)
tree692b4ddf0deb8d81651b9e72ffd1b3a953cadb6f /editor
parent8779f51a5e44bf7418aae2ee29cff38ba9212b86 (diff)
parenta0995182fe70d00f4cf0ef86ae1e7afbea9af62d (diff)
Merge pull request #64170 from YuriSizov/docs-annotations-in-technicolor
Add documentation for all annotations
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_help.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp
index 8d58469684..7fa4303145 100644
--- a/editor/editor_help.cpp
+++ b/editor/editor_help.cpp
@@ -1785,7 +1785,7 @@ static void _add_text_to_rt(const String &p_bbcode, RichTextLabel *p_rt) {
p_rt->add_text("[");
pos = brk_pos + 1;
- } else if (tag.begins_with("method ") || tag.begins_with("member ") || tag.begins_with("signal ") || tag.begins_with("enum ") || tag.begins_with("constant ") || tag.begins_with("theme_item ")) {
+ } else if (tag.begins_with("method ") || tag.begins_with("member ") || tag.begins_with("signal ") || tag.begins_with("enum ") || tag.begins_with("constant ") || tag.begins_with("annotation ") || tag.begins_with("theme_item ")) {
const int tag_end = tag.find(" ");
const String link_tag = tag.substr(0, tag_end);
const String link_target = tag.substr(tag_end + 1, tag.length()).lstrip(" ");