From baeb01f7582081a807ce70bc13767de5c49f808c Mon Sep 17 00:00:00 2001 From: Yusyuriv Date: Sun, 19 May 2024 05:53:11 +0600 Subject: [PATCH] Also remove the SettingWindowViewModel constructor argument from SettingsPaneHotkeyViewModel --- .../SettingPages/ViewModels/SettingsPaneHotkeyViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneHotkeyViewModel.cs b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneHotkeyViewModel.cs index f56c4a971..7eb05d945 100644 --- a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneHotkeyViewModel.cs +++ b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneHotkeyViewModel.cs @@ -114,7 +114,7 @@ public partial class SettingsPaneHotkeyViewModel : BaseModel return; } - var window = new CustomShortcutSetting(item.Key, item.Value, null); + var window = new CustomShortcutSetting(item.Key, item.Value); if (window.ShowDialog() is not true) return; var index = Settings.CustomShortcuts.IndexOf(item);