mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change type name & Add comments
This commit is contained in:
parent
0f3f97a198
commit
83c7ee11c8
2 changed files with 10 additions and 8 deletions
|
|
@ -104,7 +104,7 @@
|
|||
VerticalAlignment="Center"
|
||||
HorizontalContentAlignment="Left"
|
||||
DefaultHotkey=""
|
||||
Type="None" />
|
||||
Type="CustomQueryHotkey" />
|
||||
<TextBlock
|
||||
Grid.Row="1"
|
||||
Grid.Column="0"
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ namespace Flow.Launcher
|
|||
nameof(Type),
|
||||
typeof(HotkeyType),
|
||||
typeof(HotkeyControl),
|
||||
new FrameworkPropertyMetadata(HotkeyType.None, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, OnHotkeyChanged)
|
||||
new FrameworkPropertyMetadata(HotkeyType.CustomQueryHotkey, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, OnHotkeyChanged)
|
||||
);
|
||||
|
||||
public HotkeyType Type
|
||||
|
|
@ -95,8 +95,8 @@ namespace Flow.Launcher
|
|||
|
||||
public enum HotkeyType
|
||||
{
|
||||
// Custom hotkeys
|
||||
None, // Used for getting hotkey from dialog result
|
||||
// Custom query hotkeys
|
||||
CustomQueryHotkey,
|
||||
// Settings hotkeys
|
||||
Hotkey,
|
||||
PreviewHotkey,
|
||||
|
|
@ -125,8 +125,8 @@ namespace Flow.Launcher
|
|||
{
|
||||
return Type switch
|
||||
{
|
||||
// Custom hotkeys
|
||||
HotkeyType.None => hotkey,
|
||||
// Custom query hotkeys
|
||||
HotkeyType.CustomQueryHotkey => hotkey,
|
||||
// Settings hotkeys
|
||||
HotkeyType.Hotkey => _settings.Hotkey,
|
||||
HotkeyType.PreviewHotkey => _settings.PreviewHotkey,
|
||||
|
|
@ -149,8 +149,10 @@ namespace Flow.Launcher
|
|||
{
|
||||
switch (Type)
|
||||
{
|
||||
// Custom hotkeys
|
||||
case HotkeyType.None:
|
||||
// Custom query hotkeys
|
||||
case HotkeyType.CustomQueryHotkey:
|
||||
// We just need to store it in a local field
|
||||
// because we will save to settings in other place
|
||||
hotkey = value;
|
||||
break;
|
||||
// Settings hotkeys
|
||||
|
|
|
|||
Loading…
Reference in a new issue