From 2ce415791a26a9ecababfc62f829dd5c5d60e3b7 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Sun, 20 Jul 2025 20:35:26 +0800 Subject: [PATCH] Fix build issue --- Flow.Launcher/HotkeyControl.xaml.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher/HotkeyControl.xaml.cs b/Flow.Launcher/HotkeyControl.xaml.cs index 8b4418133..befd8ac68 100644 --- a/Flow.Launcher/HotkeyControl.xaml.cs +++ b/Flow.Launcher/HotkeyControl.xaml.cs @@ -1,4 +1,4 @@ -using System.Collections.ObjectModel; +using System.Collections.ObjectModel; using System.Threading.Tasks; using System.Windows; using System.Windows.Input; @@ -221,7 +221,8 @@ namespace Flow.Launcher case HotkeyType.WindowPluginHotkey: // We should not save it to settings here because it is a custom plugin hotkey // and it will be saved in the plugin settings - hotkey = value; + hotkey = value; + break; default: throw new System.NotImplementedException("Hotkey type not set"); }