From 1f5478d3c5a79a7505dac6fc2bc5f6629f36862f Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Fri, 3 Dec 2021 13:45:36 -0600 Subject: [PATCH] Fix incompatible delegate type --- Flow.Launcher/SettingWindow.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher/SettingWindow.xaml.cs b/Flow.Launcher/SettingWindow.xaml.cs index 896760640..3f2d7ebd3 100644 --- a/Flow.Launcher/SettingWindow.xaml.cs +++ b/Flow.Launcher/SettingWindow.xaml.cs @@ -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) {