We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8bac530 + 23d0b73 commit 3f0f118Copy full SHA for 3f0f118
1 file changed
Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/SettingsViewModel.cs
@@ -577,8 +577,8 @@ public string ExcludedFileTypes
577
}
578
579
580
- public int MaxResultLowerLimit => 1;
581
- public int MaxResultUpperLimit => 100000;
+ public int MaxResultLowerLimit { get; } = 1;
+ public int MaxResultUpperLimit { get; } = 100000;
582
583
public int MaxResult
584
{
@@ -592,7 +592,7 @@ public int MaxResult
592
593
#region Everything FastSortWarning
594
595
- public List<EverythingSortOptionLocalized> AllEverythingSortOptions = EverythingSortOptionLocalized.GetValues();
+ public List<EverythingSortOptionLocalized> AllEverythingSortOptions { get; } = EverythingSortOptionLocalized.GetValues();
596
597
public EverythingSortOption SelectedEverythingSortOption
598
0 commit comments