Skip to content

Commit 96bf445

Browse files
committed
Fix action context hotkey event logic
1 parent ad81a3c commit 96bf445

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
@@ -736,7 +736,7 @@ private static bool IsActionContextEvent(MainWindow window, KeyBinding existingB
736736
{
737737
// Check if this hotkey is a hotkey for ActionContext events
738738
if (!_actionContextHotkeyEvents.ContainsKey(hotkey) &&
739-
_actionContextHotkeyEvents[hotkey].Command == existingBinding.Command ||
739+
_actionContextHotkeyEvents[hotkey].Command == existingBinding.Command &&
740740
_actionContextHotkeyEvents[hotkey].Parameter == existingBinding.CommandParameter)
741741
{
742742
// If the hotkey is not for ActionContext events, return false

0 commit comments

Comments
 (0)