Skip to content

Commit 2a55cab

Browse files
committed
Fix Show Function
1 parent 2da2012 commit 2a55cab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Flow.Launcher/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ public void WindowAnimator()
509509

510510
var WindowMotion = new DoubleAnimation
511511
{
512-
From = Top,
512+
From = Top + 10,
513513
To = Top,
514514
Duration = TimeSpan.FromMilliseconds(animationLength * 2 / 3),
515515
FillBehavior = FillBehavior.Stop

Flow.Launcher/ViewModel/MainViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1385,7 +1385,7 @@ public void Show()
13851385
Application.Current.Dispatcher.Invoke(() =>
13861386
{
13871387
MainWindowVisibility = Visibility.Visible;
1388-
MainWindowOpacity = Settings.UseAnimation ? 0 : 1;
1388+
MainWindowOpacity = 1;
13891389

13901390
MainWindowVisibilityStatus = true;
13911391
VisibilityChanged?.Invoke(this, new VisibilityChangedEventArgs { IsVisible = true });

0 commit comments

Comments
 (0)