mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Make HotkeyControl hotkey binding two-way by default
This commit is contained in:
parent
9ce642532d
commit
56a8376f81
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ namespace Flow.Launcher
|
||||||
|
|
||||||
public static readonly DependencyProperty HotkeyProperty = DependencyProperty.Register(
|
public static readonly DependencyProperty HotkeyProperty = DependencyProperty.Register(
|
||||||
nameof(Hotkey), typeof(string), typeof(HotkeyControl),
|
nameof(Hotkey), typeof(string), typeof(HotkeyControl),
|
||||||
new PropertyMetadata("", OnHotkeyChanged));
|
new FrameworkPropertyMetadata("", FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, OnHotkeyChanged));
|
||||||
|
|
||||||
public string Hotkey
|
public string Hotkey
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue