Fix incompatible delegate type

This commit is contained in:
Kevin Zhang 2021-12-03 13:45:36 -06:00
parent 35838b23af
commit 1f5478d3c5

View file

@ -129,12 +129,12 @@ namespace Flow.Launcher
HotkeyControl.SetHotkey(viewModel.Settings.Hotkey, false);
}
private void OnHotkeyControlFocused(object sender, EventArgs e)
private void OnHotkeyControlFocused(object sender, RoutedEventArgs e)
{
HotKeyMapper.RemoveHotkey(settings.Hotkey);
}
private void OnHotkeyControlFocusLost(object sender, EventArgs e)
private void OnHotkeyControlFocusLost(object sender, RoutedEventArgs e)
{
if (HotkeyControl.CurrentHotkeyAvailable)
{