mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
- Add Ctrl+F12 to Toggle Game mode
This commit is contained in:
parent
2ca2fe9d9e
commit
16400ab7ff
1 changed files with 6 additions and 1 deletions
|
|
@ -568,6 +568,12 @@ namespace Flow.Launcher
|
|||
_settings.MaxResultsToShow = _settings.MaxResultsToShow + 1;
|
||||
}
|
||||
break;
|
||||
case Key.F12:
|
||||
if (specialKeyState.CtrlPressed)
|
||||
{
|
||||
ToggleGameMode();
|
||||
}
|
||||
break;
|
||||
case Key.Back:
|
||||
if (specialKeyState.CtrlPressed)
|
||||
{
|
||||
|
|
@ -586,7 +592,6 @@ namespace Flow.Launcher
|
|||
}
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue