From d28ba076fa96e59328e385d481b8644999683a11 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ChocolateyGui.Common.Windows/Services/SplashScreenService.cs b/Source/ChocolateyGui.Common.Windows/Services/SplashScreenService.cs index f4447fdff..62ad4d460 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)