From d3851d5452ae14f6c1b57a9b60efcbf594db0f0c Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Sat, 14 Dec 2019 18:46:34 +0800 Subject: [PATCH] Show enum class name when not on the same doc page Variant.Type and Variant.Operator are listed on GlobalScope page instead of Variant. The `Variant` prefix should not be omitted on that page. --- editor/editor_help.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 9b7f255e463..bbbb50297f7 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -798,7 +798,7 @@ void EditorHelp::_update_doc() { class_desc->pop(); class_desc->push_font(doc_code_font); String e = E->key(); - if (e.get_slice_count(".")) { + if ((e.get_slice_count(".") > 1) && (e.get_slice(".", 0) == edited_class)) { e = e.get_slice(".", 1); }