Skip to content

Commit 1f5478d

Browse files
committed
Fix incompatible delegate type
1 parent 35838b2 commit 1f5478d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Flow.Launcher/SettingWindow.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,12 @@ private void OnHotkeyControlLoaded(object sender, RoutedEventArgs e)
129129
HotkeyControl.SetHotkey(viewModel.Settings.Hotkey, false);
130130
}
131131

132-
private void OnHotkeyControlFocused(object sender, EventArgs e)
132+
private void OnHotkeyControlFocused(object sender, RoutedEventArgs e)
133133
{
134134
HotKeyMapper.RemoveHotkey(settings.Hotkey);
135135
}
136136

137-
private void OnHotkeyControlFocusLost(object sender, EventArgs e)
137+
private void OnHotkeyControlFocusLost(object sender, RoutedEventArgs e)
138138
{
139139
if (HotkeyControl.CurrentHotkeyAvailable)
140140
{

0 commit comments

Comments
 (0)