autocomplete for enum values
This commit is contained in:
parent
a4b250d1ae
commit
ca1932636f
|
@ -2054,7 +2054,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) {
|
||||||
|
|
Loading…
Reference in New Issue