mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix MaxResultCount
This commit is contained in:
parent
644c56026a
commit
83262dea78
1 changed files with 1 additions and 1 deletions
|
|
@ -381,7 +381,7 @@ namespace Flow.Launcher.ViewModel
|
|||
[RelayCommand]
|
||||
private void IncreaseMaxResult()
|
||||
{
|
||||
if (_settings.MaxResultsToShow > 17) return;
|
||||
if (_settings.MaxResultsToShow > 16) return;
|
||||
_settings.MaxResultsToShow += 1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue