Skip to content

Commit 83262de

Browse files
committed
Fix MaxResultCount
1 parent 644c560 commit 83262de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher/ViewModel/MainViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ private void DecreaseWidth()
381381
[RelayCommand]
382382
private void IncreaseMaxResult()
383383
{
384-
if (_settings.MaxResultsToShow > 17) return;
384+
if (_settings.MaxResultsToShow > 16) return;
385385
_settings.MaxResultsToShow += 1;
386386
}
387387

0 commit comments

Comments
 (0)