autocomplete for enum values

(cherry picked from commit ca1932636f)
This commit is contained in:
hilfazer 2019-05-26 09:09:11 +02:00 committed by Rémi Verschelde
parent e50eb830af
commit c7551515e3
1 changed files with 1 additions and 1 deletions

View File

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