[PTRun]Fix focus glitch on first time run (#17128)

This commit is contained in:
Jaime Bernardo
2022-03-21 16:18:45 +00:00
committed by GitHub
parent 1d15070698
commit fcc1d46b63

View File

@@ -205,6 +205,10 @@ namespace PowerLauncher
UpdatePosition();
BringProcessToForeground();
// HACK: Setting focus here again fixes some focus issues, like on first run or after showing a message box.
SearchBox.QueryTextBox.Focus();
Keyboard.Focus(SearchBox.QueryTextBox);
if (!_viewModel.LastQuerySelected)
{
_viewModel.LastQuerySelected = true;