From 10d1410c5e9b8bf057df7010271d6eafcb639163 Mon Sep 17 00:00:00 2001 From: Vic <10308169+VictoriousRaptor@users.noreply.github.com> Date: Sat, 22 Apr 2023 17:08:11 +0800 Subject: [PATCH] Reduce unnecessary image load --- 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 2a08f3994..871dd723c 100644 --- a/Flow.Launcher/ViewModel/MainViewModel.cs +++ b/Flow.Launcher/ViewModel/MainViewModel.cs @@ -615,7 +615,7 @@ namespace Flow.Launcher.ViewModel public void ResetPreview() { - if (Settings.AlwaysPreview == true) + if (Settings.AlwaysPreview == true && !PreviewVisible) { ShowInternalPreview(); }