From bc7f9f7534e4913afca66da45dbee35f0a8739b2 Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Mon, 23 Jan 2023 20:05:34 -0600 Subject: [PATCH] changed min length to 1 to start filtering after first character is entered. --- Source/Editor/Utilities/QueryFilterHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Editor/Utilities/QueryFilterHelper.cs b/Source/Editor/Utilities/QueryFilterHelper.cs index 653149a35..e9e5e9ccb 100644 --- a/Source/Editor/Utilities/QueryFilterHelper.cs +++ b/Source/Editor/Utilities/QueryFilterHelper.cs @@ -15,7 +15,7 @@ namespace FlaxEditor.Utilities /// /// The minimum text match length. /// - public const int MinLength = 2; + public const int MinLength = 1; /// /// Matches the specified text with the filter.