mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Do not validate key gesture for plugin hotkeys
This commit is contained in:
parent
e8707addd0
commit
40ba1aea40
1 changed files with 2 additions and 2 deletions
|
|
@ -82,9 +82,9 @@ public partial class SettingsPaneHotkey
|
||||||
HotkeyControl.HotkeyType.GlobalPluginHotkey :
|
HotkeyControl.HotkeyType.GlobalPluginHotkey :
|
||||||
HotkeyControl.HotkeyType.WindowPluginHotkey,
|
HotkeyControl.HotkeyType.WindowPluginHotkey,
|
||||||
DefaultHotkey = hotkey.DefaultHotkey,
|
DefaultHotkey = hotkey.DefaultHotkey,
|
||||||
ValidateKeyGesture = true
|
ValidateKeyGesture = false,
|
||||||
|
Hotkey = hotkeySetting
|
||||||
};
|
};
|
||||||
hotkeyControl.SetHotkey(hotkeySetting, true);
|
|
||||||
hotkeyControl.ChangeHotkey = new RelayCommand<HotkeyModel>((h) => ChangePluginHotkey(metadata, hotkey, h));
|
hotkeyControl.ChangeHotkey = new RelayCommand<HotkeyModel>((h) => ChangePluginHotkey(metadata, hotkey, h));
|
||||||
card.Content = hotkeyControl;
|
card.Content = hotkeyControl;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue