From c41f6973d3fc8a3adc953b7ccb6c40f65f8a04d1 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sat, 25 Jan 2020 03:30:53 -0500 Subject: [PATCH] since we don't display the text in the splash screen, print it to the console instead --- CSharp/Libraries/UniversalEditor.UserInterface/Engine.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/CSharp/Libraries/UniversalEditor.UserInterface/Engine.cs b/CSharp/Libraries/UniversalEditor.UserInterface/Engine.cs index 0b92248f..56418044 100644 --- a/CSharp/Libraries/UniversalEditor.UserInterface/Engine.cs +++ b/CSharp/Libraries/UniversalEditor.UserInterface/Engine.cs @@ -1012,6 +1012,7 @@ namespace UniversalEditor.UserInterface protected internal virtual void UpdateSplashScreenStatus(string message, int progressValue = -1, int progressMinimum = 0, int progressMaximum = 100) { + Console.WriteLine(message); } private void Initialize()