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 f531a46 commit 798d30eCopy full SHA for 798d30e
Flow.Launcher/ViewModel/MainViewModel.cs
@@ -285,7 +285,8 @@ private async Task OpenResultAsync(string index)
285
}
286
var hideWindow = await result.ExecuteAsync(new ActionContext
287
{
288
- SpecialKeyState = GlobalHotkey.CheckModifiers()
+ // not null means pressing modifier key + number, should ignore the modifier key
289
+ SpecialKeyState = index is not null ? new SpecialKeyState() : GlobalHotkey.CheckModifiers()
290
})
291
.ConfigureAwait(false);
292
0 commit comments