This commit is contained in:
Vic 2022-11-03 15:56:48 +08:00
parent 12721bc091
commit 0eedb7b0f4
2 changed files with 3 additions and 3 deletions

View file

@ -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}}">
<ListView.View>

View file

@ -223,7 +223,7 @@ namespace Flow.Launcher.ViewModel
public List<Language> Languages => _translater.LoadAvailableLanguages();
public IEnumerable<int> MaxResultsRange => Enumerable.Range(2, 16);
public ObservableCollection<CustomShortcutModel> ShortCuts => Settings.CustomShortcuts;
public ObservableCollection<CustomShortcutModel> CustomShortcuts => Settings.CustomShortcuts;
public string TestProxy()
{
@ -739,4 +739,4 @@ namespace Flow.Launcher.ViewModel
}
#endregion
}
}
}