Copy selected query text if there is a selection

This commit is contained in:
Garulf 2023-06-04 17:22:49 -04:00
parent 488c8e81b8
commit c631895211

View file

@ -68,7 +68,7 @@ namespace Flow.Launcher
}
else if (!string.IsNullOrEmpty(QueryTextBox.Text))
{
_viewModel.ResultCopy(QueryTextBox.SelectedText);
System.Windows.Clipboard.SetText(QueryTextBox.SelectedText);
}
}