We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 96577ba + fe32557 commit c5d9662Copy full SHA for c5d9662
AutoCompleteTextBox/AutoCompleteTextBox/Editors/AutoCompleteTextBox.cs
@@ -489,14 +489,15 @@ private void OnSelectionAdapterCommit(SelectionAdapter.EventCause cause)
489
490
private void OnSelectionAdapterSelectionChanged()
491
{
492
+ ScrollToSelectedItem();
493
+
494
if (!PreviewSelection)
495
return;
496
497
_isUpdatingText = true;
498
Editor.Text = ItemsSelector.SelectedItem == null ? Filter : GetDisplayText(ItemsSelector.SelectedItem);
499
Editor.SelectionStart = Editor.Text.Length;
500
Editor.SelectionLength = 0;
- ScrollToSelectedItem();
501
_isUpdatingText = false;
502
}
503
0 commit comments