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 2e412a0 + 64cc4a9 commit 4e28b52Copy full SHA for 4e28b52
Flow.Launcher/ViewModel/MainViewModel.cs
@@ -211,7 +211,10 @@ private void InitializeKeyCommands()
211
{
212
if (SelectedIsFromQueryResults())
213
214
- SelectedResults = ContextMenu;
+ // When switch to ContextMenu from QueryResults, but no item being chosen, should do nothing
215
+ // i.e. Shift+Enter/Ctrl+O right after Alt + Space should do nothing
216
+ if (SelectedResults.SelectedItem != null)
217
+ SelectedResults = ContextMenu;
218
}
219
else
220
0 commit comments