From 63c6a2487fda4121ea28ba980ac331cd39e61acb Mon Sep 17 00:00:00 2001 From: Saracen Date: Thu, 2 Aug 2018 09:40:36 +0100 Subject: [PATCH] Fixes the hyperlinks for enumerators inside classes in the editor help. --- editor/editor_help.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 727383b960c..0ac9aaa7d37 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"; }