From 05ba89db3d840272a1f6654bb0574c93886fecab Mon Sep 17 00:00:00 2001 From: TheBestPessimist Date: Sun, 5 Mar 2023 12:25:12 +0200 Subject: [PATCH] `Result.ToString` contains `Score` as well --- Flow.Launcher.Plugin/Result.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Plugin/Result.cs b/Flow.Launcher.Plugin/Result.cs index dc24872f5..1c4467762 100644 --- a/Flow.Launcher.Plugin/Result.cs +++ b/Flow.Launcher.Plugin/Result.cs @@ -178,7 +178,7 @@ namespace Flow.Launcher.Plugin /// public override string ToString() { - return Title + SubTitle; + return Title + SubTitle + Score; } ///