Fix MaxResultCount

This commit is contained in:
DB p 2022-10-10 15:37:13 +09:00
parent 644c56026a
commit 83262dea78

View file

@ -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;
}