1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-01 16:38:31 +00:00

Fixes the hyperlinks for enumerators inside classes in the editor help.

(cherry picked from commit 63c6a2487f)
This commit is contained in:
Saracen
2018-08-02 09:40:36 +01:00
committed by Rémi Verschelde
parent 13177d2635
commit 548777910b

View File

@@ -552,6 +552,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";
}