From 96bf44501e1b3f753d319a200fd26bf6fdd00e4e Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Thu, 10 Jul 2025 22:50:58 +0800 Subject: [PATCH] Fix action context hotkey event logic --- Flow.Launcher/Helper/HotKeyMapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/Helper/HotKeyMapper.cs b/Flow.Launcher/Helper/HotKeyMapper.cs index ff596fb79..540af9b52 100644 --- a/Flow.Launcher/Helper/HotKeyMapper.cs +++ b/Flow.Launcher/Helper/HotKeyMapper.cs @@ -736,7 +736,7 @@ internal static class HotKeyMapper { // Check if this hotkey is a hotkey for ActionContext events if (!_actionContextHotkeyEvents.ContainsKey(hotkey) && - _actionContextHotkeyEvents[hotkey].Command == existingBinding.Command || + _actionContextHotkeyEvents[hotkey].Command == existingBinding.Command && _actionContextHotkeyEvents[hotkey].Parameter == existingBinding.CommandParameter) { // If the hotkey is not for ActionContext events, return false