Merge pull request #1037 from Flow-Launcher/fullscreenMode

respect fullscreen setting when toggling main hotkey
This commit is contained in:
Jeremy Wu 2022-03-02 19:48:09 +11:00 committed by GitHub
commit 0ad2efbe99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ namespace Flow.Launcher.Helper
internal static void OnToggleHotkey(object sender, HotkeyEventArgs args)
{
if (!mainViewModel.GameModeStatus)
if (!mainViewModel.ShouldIgnoreHotkeys() && !mainViewModel.GameModeStatus)
mainViewModel.ToggleFlowLauncher();
}