From c6dc73f9becf1b3f6ff09da127c04f1a795a7fc6 Mon Sep 17 00:00:00 2001 From: Thakee Nathees Date: Thu, 13 Aug 2020 17:35:17 +0530 Subject: [PATCH] Fix: ctrl + click not working --- modules/gdscript/gdscript_editor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp index 239015060e0..67482a49063 100644 --- a/modules/gdscript/gdscript_editor.cpp +++ b/modules/gdscript/gdscript_editor.cpp @@ -2762,6 +2762,7 @@ static Error _lookup_symbol_from_base(const GDScriptParser::DataType &p_base, co if (base_type.class_type->has_member(p_symbol)) { r_result.type = ScriptLanguage::LookupResult::RESULT_SCRIPT_LOCATION; r_result.location = base_type.class_type->get_member(p_symbol).get_line(); + return OK; } base_type = base_type.class_type->base_type; }