mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Also remove the SettingWindowViewModel constructor argument from SettingsPaneHotkeyViewModel
This commit is contained in:
parent
ac3c053f88
commit
baeb01f758
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue