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 7ada82a commit e9dba45Copy full SHA for e9dba45
Flow.Launcher/MainWindow.xaml.cs
@@ -77,7 +77,7 @@ private void OnPaste(object sender, ExecutedRoutedEventArgs e)
77
if (System.Windows.Clipboard.ContainsText())
78
{
79
var clipboardText = System.Windows.Clipboard.GetText().Replace("\r\n", " ");
80
- QueryTextBox.SelectedText = clipboardText;
+ _viewModel.ChangeQueryText(QueryTextBox.Text.Insert(QueryTextBox.CaretIndex, clipboardText));
81
e.Handled = true;
82
}
83
0 commit comments