diff --git a/Flow.Launcher/MainWindow.xaml.cs b/Flow.Launcher/MainWindow.xaml.cs index b1a23a79c..1736b3f25 100644 --- a/Flow.Launcher/MainWindow.xaml.cs +++ b/Flow.Launcher/MainWindow.xaml.cs @@ -355,11 +355,9 @@ namespace Flow.Launcher private async void OnDeactivated(object sender, EventArgs e) { - // need time to initialize the main query window animation - if (_settings.UseAnimation) - await Task.Delay(50); if (_settings.HideWhenDeactive) { + await Task.Delay(50); _viewModel.Hide(); } }