From 56a8376f8141b0d02fa79dee5e7c2a7e7c35e2de Mon Sep 17 00:00:00 2001 From: Yusyuriv Date: Thu, 18 Apr 2024 14:29:14 +0600 Subject: [PATCH] Make HotkeyControl hotkey binding two-way by default --- Flow.Launcher/HotkeyControl.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/HotkeyControl.xaml.cs b/Flow.Launcher/HotkeyControl.xaml.cs index bece67de2..01584ee27 100644 --- a/Flow.Launcher/HotkeyControl.xaml.cs +++ b/Flow.Launcher/HotkeyControl.xaml.cs @@ -65,7 +65,7 @@ namespace Flow.Launcher public static readonly DependencyProperty HotkeyProperty = DependencyProperty.Register( nameof(Hotkey), typeof(string), typeof(HotkeyControl), - new PropertyMetadata("", OnHotkeyChanged)); + new FrameworkPropertyMetadata("", FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, OnHotkeyChanged)); public string Hotkey {