From 83262dea78894b4b3c317f8a2aa5e06e6ab05c2b Mon Sep 17 00:00:00 2001 From: DB p Date: Mon, 10 Oct 2022 15:37:13 +0900 Subject: [PATCH] Fix MaxResultCount --- Flow.Launcher/ViewModel/MainViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs index 0f2749acf..0cc3ed825 100644 --- a/Flow.Launcher/ViewModel/MainViewModel.cs +++ b/Flow.Launcher/ViewModel/MainViewModel.cs @@ -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; }