Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Flow.Launcher/Helper/HotKeyMapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
using Flow.Launcher.Infrastructure.DialogJump;
using Flow.Launcher.Infrastructure.UserSettings;
using Flow.Launcher.ViewModel;
using NHotkey;

Check warning on line 8 in Flow.Launcher/Helper/HotKeyMapper.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`NHotkey` is not a recognized word. (unrecognized-spelling)
using NHotkey.Wpf;

Check warning on line 9 in Flow.Launcher/Helper/HotKeyMapper.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`NHotkey` is not a recognized word. (unrecognized-spelling)

Check warning on line 9 in Flow.Launcher/Helper/HotKeyMapper.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`NHotkey` is not a recognized word. (unrecognized-spelling)

namespace Flow.Launcher.Helper;

Expand Down Expand Up @@ -72,7 +72,7 @@
string hotkeyStr = hotkey.ToString();
try
{
if (hotkeyStr == "LWin" || hotkeyStr == "RWin")

Check warning on line 75 in Flow.Launcher/Helper/HotKeyMapper.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`RWin` is not a recognized word. (unrecognized-spelling)

Check warning on line 75 in Flow.Launcher/Helper/HotKeyMapper.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`LWin` is not a recognized word. (unrecognized-spelling)
{
SetWithChefKeys(hotkeyStr);
return;
Expand All @@ -97,7 +97,7 @@
{
try
{
if (hotkeyStr == "LWin" || hotkeyStr == "RWin")

Check warning on line 100 in Flow.Launcher/Helper/HotKeyMapper.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`LWin` is not a recognized word. (unrecognized-spelling)

Check warning on line 100 in Flow.Launcher/Helper/HotKeyMapper.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`RWin` is not a recognized word. (unrecognized-spelling)

Check warning on line 100 in Flow.Launcher/Helper/HotKeyMapper.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`LWin` is not a recognized word. (unrecognized-spelling)
{
RemoveWithChefKeys(hotkeyStr);
return;
Expand Down Expand Up @@ -143,6 +143,8 @@
return;

App.API.ShowMainWindow();
// Make sure to go back to the query results page first since it can cause issues if current page is context menu
App.API.BackToQueryResults();
App.API.ChangeQuery(hotkey.ActionKeyword, true);
});
}
Expand Down
Loading