diff --git a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs index c7c1aaa40..a59ec7ecc 100644 --- a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs +++ b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs @@ -243,9 +243,6 @@ namespace Flow.Launcher.ViewModel public List Languages => _translater.LoadAvailableLanguages(); public IEnumerable MaxResultsRange => Enumerable.Range(2, 16); - public ObservableCollection CustomShortcuts => Settings.CustomShortcuts; - public ObservableCollection BuiltinShortcuts => Settings.BuiltinShortcuts; - public string TestProxy() { var proxyServer = Settings.Proxy.Server; @@ -742,6 +739,10 @@ namespace Flow.Launcher.ViewModel #region shortcut + public ObservableCollection CustomShortcuts => Settings.CustomShortcuts; + + public ObservableCollection BuiltinShortcuts => Settings.BuiltinShortcuts; + public CustomShortcutModel? SelectedCustomShortcut { get; set; } public void DeleteSelectedCustomShortcut()