Skip to content

Commit 2cf6bfb

Browse files
committed
Prepare for deprecation
1 parent 3b1e014 commit 2cf6bfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Flow.Launcher/Helper/HotKeyMapper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ kb.Gesture is KeyGesture keyGesture1 &&
674674
}
675675

676676
// Create and add the new key binding
677-
var command = BuildCommand(hotkey, hotkeyModels);
677+
var command = BuildCommand(hotkeyModels);
678678
var keyBinding = new KeyBinding(command, keyGesture);
679679
window.InputBindings.Add(keyBinding);
680680
}
@@ -693,7 +693,7 @@ kb.Gesture is KeyGesture keyGesture1 &&
693693
}
694694

695695
// TODO: Deprecated
696-
private static ICommand BuildCommand(HotkeyModel hotkey, List<(PluginMetadata Metadata, SearchWindowPluginHotkey PluginHotkey)> hotkeyModels)
696+
private static ICommand BuildCommand(List<(PluginMetadata Metadata, SearchWindowPluginHotkey PluginHotkey)> hotkeyModels)
697697
{
698698
return new RelayCommand(() =>
699699
{

0 commit comments

Comments
 (0)