mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix AllEverythingSortOptions issue
This commit is contained in:
parent
8bac530504
commit
23d0b73e20
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue