autocompleting with indexing for native types added

Fix: #37768
(cherry picked from commit 3c45377c6e)
This commit is contained in:
Thakee Nathees 2020-04-17 12:13:57 +05:30 committed by Rémi Verschelde
parent 22053ed75f
commit a446e8671d
1 changed files with 1 additions and 1 deletions

View File

@ -2098,7 +2098,7 @@ static void _find_identifiers_in_base(const GDScriptCompletionContext &p_context
if (!p_only_functions) {
List<PropertyInfo> members;
p_base.value.get_property_list(&members);
tmp.get_property_list(&members);
for (List<PropertyInfo>::Element *E = members.front(); E; E = E->next()) {
if (String(E->get().name).find("/") == -1) {