Update TypeCompleter.cs

This commit is contained in:
Sinai 2022-02-11 19:39:11 +11:00
parent bdf08f014f
commit d0bccae50c

View File

@ -66,7 +66,7 @@ namespace UnityExplorer.UI.Widgets.AutoComplete
else else
{ {
allowedTypes = new(); allowedTypes = new();
foreach (var entry in ReflectionUtility.AllTypes)) foreach (var entry in ReflectionUtility.AllTypes)
allowedTypes.Add(entry.Value); allowedTypes.Add(entry.Value);
} }
} }