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.
1 parent 29081ec commit 906d0e8Copy full SHA for 906d0e8
Flow.Launcher/MainWindow.xaml.cs
@@ -675,7 +675,7 @@ private void MoveQueryTextToEnd()
675
{
676
// QueryTextBox seems to be update with a DispatcherPriority as low as ContextIdle.
677
// To ensure QueryTextBox is up to date with QueryText from the View, we need to Dispatch with such a priority
678
- Dispatcher.Invoke(() => QueryTextBox.CaretIndex = QueryTextBox.Text.Length, System.Windows.Threading.DispatcherPriority.ContextIdle);
+ Dispatcher.Invoke(() => QueryTextBox.CaretIndex = QueryTextBox.Text.Length);
679
}
680
681
public void InitializeColorScheme()
0 commit comments