diff --git a/CSharp/Environments/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Pages/EditorPage.cs b/CSharp/Environments/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Pages/EditorPage.cs index f590d400..92ce214f 100644 --- a/CSharp/Environments/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Pages/EditorPage.cs +++ b/CSharp/Environments/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Pages/EditorPage.cs @@ -283,7 +283,10 @@ namespace UniversalEditor.UserInterface.WindowsForms.Pages } finally { - d.InputAccessor.Close(); + // do not close input accessor since we may need to read from it later (i.e. if + // it's a FileSystemObjectModel with deferred file data loading) + + // d.InputAccessor.Close(); } }