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 +}