Merge pull request #3985 from Flow-Launcher/everything_sort_option

Fix AllEverythingSortOptions issue
This commit is contained in:
Jack Ye 2025-09-18 09:07:19 +08:00 committed by GitHub
commit 3f0f118c8b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -577,8 +577,8 @@ namespace Flow.Launcher.Plugin.Explorer.ViewModels
}
}
public int MaxResultLowerLimit => 1;
public int MaxResultUpperLimit => 100000;
public int MaxResultLowerLimit { get; } = 1;
public int MaxResultUpperLimit { get; } = 100000;
public int MaxResult
{
@ -592,7 +592,7 @@ namespace Flow.Launcher.Plugin.Explorer.ViewModels
#region Everything FastSortWarning
public List<EverythingSortOptionLocalized> AllEverythingSortOptions = EverythingSortOptionLocalized.GetValues();
public List<EverythingSortOptionLocalized> AllEverythingSortOptions { get; } = EverythingSortOptionLocalized.GetValues();
public EverythingSortOption SelectedEverythingSortOption
{