mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix Show Function
This commit is contained in:
parent
2da20127fb
commit
2a55cabeff
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 });
|
||||
|
|
|
|||
Loading…
Reference in a new issue