Fix Show Function

This commit is contained in:
DB p 2025-03-06 12:50:57 +09:00
parent 2da20127fb
commit 2a55cabeff
2 changed files with 2 additions and 2 deletions

View file

@ -509,7 +509,7 @@ namespace Flow.Launcher
var WindowMotion = new DoubleAnimation
{
From = Top,
From = Top + 10,
To = Top,
Duration = TimeSpan.FromMilliseconds(animationLength * 2 / 3),
FillBehavior = FillBehavior.Stop

View file

@ -1385,7 +1385,7 @@ namespace Flow.Launcher.ViewModel
Application.Current.Dispatcher.Invoke(() =>
{
MainWindowVisibility = Visibility.Visible;
MainWindowOpacity = Settings.UseAnimation ? 0 : 1;
MainWindowOpacity = 1;
MainWindowVisibilityStatus = true;
VisibilityChanged?.Invoke(this, new VisibilityChangedEventArgs { IsVisible = true });