Fix HotkeyControl2 not working in WelcomePage2 for setting the global show/hide hotkey

This commit is contained in:
Yusyuriv 2024-04-21 21:26:37 +06:00
parent 8c90980b47
commit ebb49165c0
No known key found for this signature in database
GPG key ID: A91C52E6F73148E0

View file

@ -12,7 +12,7 @@ namespace Flow.Launcher.Resources.Pages
{
public partial class WelcomePage2
{
private Settings Settings { get; set; }
public Settings Settings { get; set; }
protected override void OnNavigatedTo(NavigationEventArgs e)
{
@ -24,5 +24,10 @@ namespace Flow.Launcher.Resources.Pages
InitializeComponent();
}
[RelayCommand]
private static void SetTogglingHotkey(HotkeyModel hotkey)
{
HotKeyMapper.SetHotkey(hotkey, HotKeyMapper.OnToggleHotkey);
}
}
}