Skip to content

Commit 0eedb7b

Browse files
renaming
1 parent 12721bc commit 0eedb7b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Flow.Launcher/SettingWindow.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2525,7 +2525,7 @@
25252525
Background="{DynamicResource Color02B}"
25262526
BorderBrush="DarkGray"
25272527
BorderThickness="1"
2528-
ItemsSource="{Binding ShortCuts}"
2528+
ItemsSource="{Binding CustomShortcuts}"
25292529
SelectedItem="{Binding SelectedCustomShortcut}"
25302530
Style="{StaticResource {x:Static GridView.GridViewStyleKey}}">
25312531
<ListView.View>

Flow.Launcher/ViewModel/SettingWindowViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public List<string> QuerySearchPrecisionStrings
223223
public List<Language> Languages => _translater.LoadAvailableLanguages();
224224
public IEnumerable<int> MaxResultsRange => Enumerable.Range(2, 16);
225225

226-
public ObservableCollection<CustomShortcutModel> ShortCuts => Settings.CustomShortcuts;
226+
public ObservableCollection<CustomShortcutModel> CustomShortcuts => Settings.CustomShortcuts;
227227

228228
public string TestProxy()
229229
{
@@ -739,4 +739,4 @@ internal string FormatBytes(long bytes)
739739
}
740740
#endregion
741741
}
742-
}
742+
}

0 commit comments

Comments
 (0)