mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix action context hotkey event logic
This commit is contained in:
parent
ad81a3c091
commit
96bf44501e
1 changed files with 1 additions and 1 deletions
|
|
@ -736,7 +736,7 @@ internal static class HotKeyMapper
|
||||||
{
|
{
|
||||||
// Check if this hotkey is a hotkey for ActionContext events
|
// Check if this hotkey is a hotkey for ActionContext events
|
||||||
if (!_actionContextHotkeyEvents.ContainsKey(hotkey) &&
|
if (!_actionContextHotkeyEvents.ContainsKey(hotkey) &&
|
||||||
_actionContextHotkeyEvents[hotkey].Command == existingBinding.Command ||
|
_actionContextHotkeyEvents[hotkey].Command == existingBinding.Command &&
|
||||||
_actionContextHotkeyEvents[hotkey].Parameter == existingBinding.CommandParameter)
|
_actionContextHotkeyEvents[hotkey].Parameter == existingBinding.CommandParameter)
|
||||||
{
|
{
|
||||||
// If the hotkey is not for ActionContext events, return false
|
// If the hotkey is not for ActionContext events, return false
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue