Merge pull request #37954 from ThakeeNathees/autocomplete-indexing-native-types

Autocompleting with indexing for builtin types added
This commit is contained in:
Rémi Verschelde 2020-04-21 16:19:07 +02:00 committed by GitHub
commit 9cad835880
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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) {