Skip to content

Commit 01642e2

Browse files
authored
(#890) Don't display splash screen on top
1 parent baabe9e commit 01642e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/ChocolateyGui.Common.Windows/Services/SplashScreenService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ public SplashScreenService(IImageService imageService)
2424
public void Show()
2525
{
2626
_splashScreen = new SplashScreen(_imageService.SplashScreenImageName);
27-
_splashScreen.Show(true, true);
27+
_splashScreen.Show(true);
2828
}
2929

3030
public void Close(TimeSpan duration)
3131
{
3232
_splashScreen.Close(duration);
3333
}
3434
}
35-
}
35+
}

0 commit comments

Comments
 (0)