We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5236279 commit eef6878Copy full SHA for eef6878
Flow.Launcher/ViewModel/MainViewModel.cs
@@ -393,14 +393,18 @@ private void DecreaseWidth()
393
[RelayCommand]
394
private void IncreaseMaxResult()
395
{
396
- if (_settings.MaxResultsToShow > 16) return;
+ if (_settings.MaxResultsToShow == 17)
397
+ return;
398
+
399
_settings.MaxResultsToShow += 1;
400
}
401
402
403
private void DecreaseMaxResult()
404
- if (_settings.MaxResultsToShow < 2) return;
405
+ if (_settings.MaxResultsToShow == 2)
406
407
408
_settings.MaxResultsToShow -= 1;
409
410
0 commit comments