Index: src/DeltaShell/DeltaShell.Gui/DeltaShellGui.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -rfa1c86d90aad8abe422614a78077515ef39d8c96 --- src/DeltaShell/DeltaShell.Gui/DeltaShellGui.cs (.../DeltaShellGui.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ src/DeltaShell/DeltaShell.Gui/DeltaShellGui.cs (.../DeltaShellGui.cs) (revision fa1c86d90aad8abe422614a78077515ef39d8c96) @@ -765,26 +765,14 @@ private void ShowSplashScreen() { // plugin assemblies loaded - count steps required to start application - splashScreen = new SplashScreen(Application); - - string splashScreenLogoImageFilePath = Application.Settings["splashScreenLogoImageFilePath"]; - if (splashScreenLogoImageFilePath != null) + splashScreen = new SplashScreen(Application) { - if (!File.Exists(splashScreenLogoImageFilePath)) - { - log.WarnFormat(Resources.DeltaShellGui_ShowSplashScreen_Logo_file__0__does_not_exist, splashScreenLogoImageFilePath); - } - else - { - splashScreen.LogoImageFilePath = splashScreenLogoImageFilePath; - } - } + LabelVersionVersion = SettingsHelper.ApplicationVersion, + SplashScreenCopyright = Application.Settings["copyright"], + LabelLicense = Application.Settings["license"], + LabelCompany = Application.Settings["company"] + }; - splashScreen.LabelVersionVersion = Application.Settings["fullVersion"]; - splashScreen.SplashScreenCopyright = Application.Settings["copyright"]; - splashScreen.LabelLicense = Application.Settings["license"]; - splashScreen.LabelCompany = Application.Settings["company"]; - splashScreen.IsVisibleChanged += delegate { if (splashScreen.IsVisible)