From 8c90980b47f66131b75e53d5bc51adabdd4cc1c8 Mon Sep 17 00:00:00 2001 From: Yusyuriv Date: Sun, 21 Apr 2024 21:21:02 +0600 Subject: [PATCH] Fix a bug with HotkeyControl2 not re-registering the global hotkey after pressing "Cancel" --- Flow.Launcher/HotkeyControl2.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Flow.Launcher/HotkeyControl2.xaml.cs b/Flow.Launcher/HotkeyControl2.xaml.cs index d7479acbf..86973a754 100644 --- a/Flow.Launcher/HotkeyControl2.xaml.cs +++ b/Flow.Launcher/HotkeyControl2.xaml.cs @@ -127,6 +127,7 @@ namespace Flow.Launcher switch (dialog.ResultType) { case HotkeyControl2Dialog.EResultType.Cancel: + SetHotkey(Hotkey); return; case HotkeyControl2Dialog.EResultType.Save: SetHotkey(dialog.ResultValue);