diff --git a/Flow.Launcher/SettingWindow.xaml b/Flow.Launcher/SettingWindow.xaml index 2226a7d3c..45f0119a1 100644 --- a/Flow.Launcher/SettingWindow.xaml +++ b/Flow.Launcher/SettingWindow.xaml @@ -2525,7 +2525,7 @@ Background="{DynamicResource Color02B}" BorderBrush="DarkGray" BorderThickness="1" - ItemsSource="{Binding ShortCuts}" + ItemsSource="{Binding CustomShortcuts}" SelectedItem="{Binding SelectedCustomShortcut}" Style="{StaticResource {x:Static GridView.GridViewStyleKey}}"> diff --git a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs index 539a63c36..389af9a45 100644 --- a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs +++ b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs @@ -223,7 +223,7 @@ namespace Flow.Launcher.ViewModel public List Languages => _translater.LoadAvailableLanguages(); public IEnumerable MaxResultsRange => Enumerable.Range(2, 16); - public ObservableCollection ShortCuts => Settings.CustomShortcuts; + public ObservableCollection CustomShortcuts => Settings.CustomShortcuts; public string TestProxy() { @@ -739,4 +739,4 @@ namespace Flow.Launcher.ViewModel } #endregion } -} \ No newline at end of file +}