From 16400ab7fffdb92f5b7614a8caf8c3fd8fccda6e Mon Sep 17 00:00:00 2001 From: DB p Date: Thu, 8 Sep 2022 16:44:00 +0900 Subject: [PATCH] - Add Ctrl+F12 to Toggle Game mode --- Flow.Launcher/MainWindow.xaml.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Flow.Launcher/MainWindow.xaml.cs b/Flow.Launcher/MainWindow.xaml.cs index 6837d60ed..3366e7802 100644 --- a/Flow.Launcher/MainWindow.xaml.cs +++ b/Flow.Launcher/MainWindow.xaml.cs @@ -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;