Skip to content

Commit 5c42e98

Browse files
Jack251970jjw24
authored andcommitted
Merge pull request #3985 from Flow-Launcher/everything_sort_option
Fix AllEverythingSortOptions issue
1 parent c6961f2 commit 5c42e98

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/SettingsViewModel.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -577,8 +577,8 @@ public string ExcludedFileTypes
577577
}
578578
}
579579

580-
public int MaxResultLowerLimit => 1;
581-
public int MaxResultUpperLimit => 100000;
580+
public int MaxResultLowerLimit { get; } = 1;
581+
public int MaxResultUpperLimit { get; } = 100000;
582582

583583
public int MaxResult
584584
{
@@ -592,7 +592,7 @@ public int MaxResult
592592

593593
#region Everything FastSortWarning
594594

595-
public List<EverythingSortOptionLocalized> AllEverythingSortOptions = EverythingSortOptionLocalized.GetValues();
595+
public List<EverythingSortOptionLocalized> AllEverythingSortOptions { get; } = EverythingSortOptionLocalized.GetValues();
596596

597597
public EverythingSortOption SelectedEverythingSortOption
598598
{

0 commit comments

Comments
 (0)