changed min length to 1 to start filtering after first character is entered.

This commit is contained in:
Chandler Cox
2023-01-23 20:05:34 -06:00
parent 1e98fe2920
commit bc7f9f7534

View File

@@ -15,7 +15,7 @@ namespace FlaxEditor.Utilities
/// <summary>
/// The minimum text match length.
/// </summary>
public const int MinLength = 2;
public const int MinLength = 1;
/// <summary>
/// Matches the specified text with the filter.