Skip to content

Commit 2ce4157

Browse files
committed
Fix build issue
1 parent 11e8a58 commit 2ce4157

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Flow.Launcher/HotkeyControl.xaml.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Collections.ObjectModel;
1+
using System.Collections.ObjectModel;
22
using System.Threading.Tasks;
33
using System.Windows;
44
using System.Windows.Input;
@@ -221,7 +221,8 @@ public string Hotkey
221221
case HotkeyType.WindowPluginHotkey:
222222
// We should not save it to settings here because it is a custom plugin hotkey
223223
// and it will be saved in the plugin settings
224-
hotkey = value;
224+
hotkey = value;
225+
break;
225226
default:
226227
throw new System.NotImplementedException("Hotkey type not set");
227228
}

0 commit comments

Comments
 (0)