From c30025f4688886cc26710b2bfffb18a3f81658d9 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sun, 21 Jul 2019 00:29:46 -0400 Subject: [PATCH] The splash screen should be centered --- .../UniversalEditor.UserInterface/SplashScreenWindow.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/CSharp/Libraries/UniversalEditor.UserInterface/SplashScreenWindow.cs b/CSharp/Libraries/UniversalEditor.UserInterface/SplashScreenWindow.cs index 35fe622b..30421b64 100644 --- a/CSharp/Libraries/UniversalEditor.UserInterface/SplashScreenWindow.cs +++ b/CSharp/Libraries/UniversalEditor.UserInterface/SplashScreenWindow.cs @@ -34,6 +34,7 @@ namespace UniversalEditor.UserInterface this.Decorated = false; this.Layout = new BoxLayout(Orientation.Vertical); this.Size = new Dimension2D(300, 300); + this.StartPosition = WindowStartPosition.Center; Image image = new Image(); image.IconName = "universal-editor";