From 01642e2ea29c744ee4a255e79e87b7c0a840358b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgaras=20Janu=C5=A1auskas?= Date: Fri, 17 Nov 2023 22:11:35 +0200 Subject: [PATCH] (#890) Don't display splash screen on top --- .../Services/SplashScreenService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/ChocolateyGui.Common.Windows/Services/SplashScreenService.cs b/Source/ChocolateyGui.Common.Windows/Services/SplashScreenService.cs index f4447fdff..60b69442e 100644 --- a/Source/ChocolateyGui.Common.Windows/Services/SplashScreenService.cs +++ b/Source/ChocolateyGui.Common.Windows/Services/SplashScreenService.cs @@ -24,7 +24,7 @@ public SplashScreenService(IImageService imageService) public void Show() { _splashScreen = new SplashScreen(_imageService.SplashScreenImageName); - _splashScreen.Show(true, true); + _splashScreen.Show(true); } public void Close(TimeSpan duration) @@ -32,4 +32,4 @@ public void Close(TimeSpan duration) _splashScreen.Close(duration); } } -} \ No newline at end of file +}