From 00fe37ea800d77b0c5703622f24c8fd0835572e6 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Wed, 29 Apr 2020 14:04:52 +1000 Subject: [PATCH] Change default max result to show to 5, less cluttering --- Flow.Launcher.Infrastructure/UserSettings/Settings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Infrastructure/UserSettings/Settings.cs b/Flow.Launcher.Infrastructure/UserSettings/Settings.cs index dbb47fd8e..a9cec8b25 100644 --- a/Flow.Launcher.Infrastructure/UserSettings/Settings.cs +++ b/Flow.Launcher.Infrastructure/UserSettings/Settings.cs @@ -59,7 +59,7 @@ namespace Flow.Launcher.Infrastructure.UserSettings public double WindowLeft { get; set; } public double WindowTop { get; set; } - public int MaxResultsToShow { get; set; } = 6; + public int MaxResultsToShow { get; set; } = 5; public int ActivateTimes { get; set; } // Order defaults to 0 or -1, so 1 will let this property appear last