Skip to content

Commit 0ad2efb

Browse files
authored
Merge pull request #1037 from Flow-Launcher/fullscreenMode
respect fullscreen setting when toggling main hotkey
2 parents 813d900 + 6ff468a commit 0ad2efb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher/Helper/HotKeyMapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ internal static void Initialize(MainViewModel mainVM)
2525

2626
internal static void OnToggleHotkey(object sender, HotkeyEventArgs args)
2727
{
28-
if (!mainViewModel.GameModeStatus)
28+
if (!mainViewModel.ShouldIgnoreHotkeys() && !mainViewModel.GameModeStatus)
2929
mainViewModel.ToggleFlowLauncher();
3030
}
3131

0 commit comments

Comments
 (0)