summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Folkins <folkins.peter@gmail.com>2018-04-26 13:16:00 -0500
committerPeter Folkins <folkins.peter@gmail.com>2018-05-01 07:57:53 -0500
commitccd986f53e468321b9eeb09474c77cfab2c988da (patch)
tree2f5b274f501b7a283692fd124622dcaeb66c37ed
parente5a13e26265179d9d6b477c6d744758521745123 (diff)
Fix enums without class name not opening docs page
-rw-r--r--modules/gdscript/gdscript_editor.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp
index 0d52f0a995..ea94f8e784 100644
--- a/modules/gdscript/gdscript_editor.cpp
+++ b/modules/gdscript/gdscript_editor.cpp
@@ -2641,6 +2641,18 @@ Error GDScriptLanguage::lookup_code(const String &p_code, const String &p_symbol
context.function = p.get_completion_function();
context.base = p_owner;
context.base_path = p_base_path;
+
+ if (context._class && context._class->extends_class.size() > 0) {
+ bool success = false;
+ ClassDB::get_integer_constant(context._class->extends_class[0], p_symbol, &success);
+ if (success) {
+ r_result.type = ScriptLanguage::LookupResult::RESULT_CLASS_CONSTANT;
+ r_result.class_name = context._class->extends_class[0];
+ r_result.class_member = p_symbol;
+ return OK;
+ }
+ }
+
bool isfunction = false;
switch (p.get_completion_type()) {