From 9379e0f81353abe2a561e9e3582c1b9b04dcbf7f Mon Sep 17 00:00:00 2001 From: Sinai <49360850+sinai-dev@users.noreply.github.com> Date: Fri, 22 Apr 2022 09:08:49 +1000 Subject: [PATCH] Fix constraints on AddComponent TypeCompleter --- src/Inspectors/GameObjectInspector.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Inspectors/GameObjectInspector.cs b/src/Inspectors/GameObjectInspector.cs index a696f66..4c06ca2 100644 --- a/src/Inspectors/GameObjectInspector.cs +++ b/src/Inspectors/GameObjectInspector.cs @@ -333,7 +333,7 @@ namespace UnityExplorer.Inspectors addCompButton.OnClick += () => { OnAddComponentClicked(addCompInput.Text); }; // comp autocompleter - new TypeCompleter(typeof(Component), addCompInput); + new TypeCompleter(typeof(Component), addCompInput, false, false, false); // Component List