From a70b13d51f360f541eb74238f35689ed8231612f Mon Sep 17 00:00:00 2001 From: DB p Date: Sun, 27 Nov 2022 02:43:08 +0900 Subject: [PATCH] - Change PreviewExtension base Subtitle from IcoPath (For Fix the Large Icon display issue) --- Flow.Launcher/ViewModel/ResultViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/ViewModel/ResultViewModel.cs b/Flow.Launcher/ViewModel/ResultViewModel.cs index ece8ae92c..1eded59c7 100644 --- a/Flow.Launcher/ViewModel/ResultViewModel.cs +++ b/Flow.Launcher/ViewModel/ResultViewModel.cs @@ -28,7 +28,7 @@ namespace Flow.Launcher.ViewModel } Result = result; - PreviewExtension = Path.GetExtension(result.PreviewImage ?? result.IcoPath); + PreviewExtension = Path.GetExtension(result.PreviewImage ?? result.SubTitle); if (PreviewExtension != null) { PreviewExtension = PreviewExtension.ToLowerInvariant();