From f655a3d245aee244b44d51e65b3972100f5f2194 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Mon, 7 Oct 2019 18:45:18 -0400 Subject: [PATCH] Load editors into memory so we don't wait 10-15 seconds before opening a file --- CSharp/Libraries/UniversalEditor.UserInterface/Engine.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CSharp/Libraries/UniversalEditor.UserInterface/Engine.cs b/CSharp/Libraries/UniversalEditor.UserInterface/Engine.cs index 6427a1d5..c18d5f00 100644 --- a/CSharp/Libraries/UniversalEditor.UserInterface/Engine.cs +++ b/CSharp/Libraries/UniversalEditor.UserInterface/Engine.cs @@ -1042,6 +1042,9 @@ namespace UniversalEditor.UserInterface // UpdateSplashScreenStatus("Finalizing configuration"); // ConfigurationManager.Load(); #endregion + + // load editors into memory so we don't wait 10-15 seconds before opening a file + Common.Reflection.GetAvailableEditors(); } private void LoadConfiguration(MarkupTagElement tag, Group group = null)