diff options
author | Saracen <SaracenOne@gmail.com> | 2018-08-02 09:40:36 +0100 |
---|---|---|
committer | Saracen <SaracenOne@gmail.com> | 2018-08-02 09:40:36 +0100 |
commit | 63c6a2487fda4121ea28ba980ac331cd39e61acb (patch) | |
tree | 7513100d6e5a43957e05a83da677c5437a73f686 /editor | |
parent | 6c569c90b666c7fb773eca3948fc76ba7a160a27 (diff) |
Fixes the hyperlinks for enumerators inside classes in the editor help.
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_help.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 727383b960..0ac9aaa7d3 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -541,6 +541,7 @@ void EditorHelp::_class_desc_select(const String &p_select) { String class_name; if (select.find(".") != -1) { class_name = select.get_slice(".", 0); + select = select.get_slice(".", 1); } else { class_name = "@GlobalScope"; } |