From 0a41072f33a7196402db93e2266a8f9d52ca2b13 Mon Sep 17 00:00:00 2001 From: DB p Date: Tue, 22 Apr 2025 11:21:11 +0900 Subject: [PATCH] Add animation option when showing the main window --- Flow.Launcher/MainWindow.xaml.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Flow.Launcher/MainWindow.xaml.cs b/Flow.Launcher/MainWindow.xaml.cs index bf7a45b1d..ee84dfeb4 100644 --- a/Flow.Launcher/MainWindow.xaml.cs +++ b/Flow.Launcher/MainWindow.xaml.cs @@ -138,8 +138,12 @@ namespace Flow.Launcher else { _viewModel.Show(); + if (_settings.UseAnimation) + { + WindowAnimation(); + } } - + // Show notify icon when flowlauncher is hidden InitializeNotifyIcon();