Lower the amount of text needed to start auto-complete in composer page to 2.
This commit is contained in:
@@ -96,7 +96,7 @@ public sealed partial class ComposePage : ComposePageAbstract,
|
|||||||
{
|
{
|
||||||
if (t.EventArgs.Reason == AutoSuggestionBoxTextChangeReason.UserInput)
|
if (t.EventArgs.Reason == AutoSuggestionBoxTextChangeReason.UserInput)
|
||||||
{
|
{
|
||||||
if (t.Sender is AutoSuggestBox senderBox && senderBox.Text.Length >= 3)
|
if (t.Sender is AutoSuggestBox senderBox && senderBox.Text.Length >= 2)
|
||||||
{
|
{
|
||||||
_ = ViewModel.ContactService.GetAddressInformationAsync(senderBox.Text).ContinueWith(x =>
|
_ = ViewModel.ContactService.GetAddressInformationAsync(senderBox.Text).ContinueWith(x =>
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user