Skip to content

Commit 497ac91

Browse files
committed
Add None hotkey type
1 parent 83c7ee1 commit 497ac91

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Flow.Launcher/HotkeyControl.xaml.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public ICommand? ChangeHotkey
8484
nameof(Type),
8585
typeof(HotkeyType),
8686
typeof(HotkeyControl),
87-
new FrameworkPropertyMetadata(HotkeyType.CustomQueryHotkey, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, OnHotkeyChanged)
87+
new FrameworkPropertyMetadata(HotkeyType.None, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, OnHotkeyChanged)
8888
);
8989

9090
public HotkeyType Type
@@ -95,6 +95,7 @@ public HotkeyType Type
9595

9696
public enum HotkeyType
9797
{
98+
None,
9899
// Custom query hotkeys
99100
CustomQueryHotkey,
100101
// Settings hotkeys

0 commit comments

Comments
 (0)