Do not close input accessor since we may need to read from it later

This commit is contained in:
Michael Becker 2014-06-04 19:22:14 -04:00
parent 71ececb10f
commit 87aaf78a97

View File

@ -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();
}
}