Fix: Ctrl + Click not working for subclasses

This commit is contained in:
Thakee Nathees 2020-06-05 12:25:07 +05:30
parent 9239412027
commit 95b0a00d2c
1 changed files with 8 additions and 0 deletions

View File

@ -3089,6 +3089,14 @@ static Error _lookup_symbol_from_base(const GDScriptParser::DataType &p_base, co
return OK;
}
}
for (int i = 0; i < base_type.class_type->subclasses.size(); i++) {
if (base_type.class_type->subclasses[i]->name == p_symbol) {
r_result.type = ScriptLanguage::LookupResult::RESULT_SCRIPT_LOCATION;
r_result.location = base_type.class_type->subclasses[i]->line;
return OK;
}
}
}
base_type = base_type.class_type->base_type;
}