From ff7457dc0f17a9914ae536857faa4104bcb420a6 Mon Sep 17 00:00:00 2001 From: Vic <10308169+VictoriousRaptor@users.noreply.github.com> Date: Sun, 21 May 2023 00:31:16 +0800 Subject: [PATCH] Keep FL open when focus lost if QL open --- Flow.Launcher/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/MainWindow.xaml.cs b/Flow.Launcher/MainWindow.xaml.cs index 96b114dac..70f4d817c 100644 --- a/Flow.Launcher/MainWindow.xaml.cs +++ b/Flow.Launcher/MainWindow.xaml.cs @@ -494,7 +494,7 @@ namespace Flow.Launcher if (_settings.UseAnimation) await Task.Delay(100); - if (_settings.HideWhenDeactivated) + if (_settings.HideWhenDeactivated && !_viewModel.ExternalPreviewOpen) { _viewModel.Hide(); }