1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

Show help for built-in functions (@GlobalScope)

This commit is contained in:
William Deurwaarder
2021-08-30 21:51:56 +02:00
parent efc87481e4
commit b2f858870d
2 changed files with 11 additions and 0 deletions

View File

@@ -1328,6 +1328,8 @@ void EditorHelp::_help_callback(const String &p_topic) {
} else if (what == "class_global") {
if (constant_line.has(name)) {
line = constant_line[name];
} else if (method_line.has(name)) {
line = method_line[name];
} else {
Map<String, Map<String, int>>::Element *iter = enum_values_line.front();
while (true) {