From edce284f124aa68d45311d58243e61dfa4f88f84 Mon Sep 17 00:00:00 2001 From: alcexhim Date: Wed, 14 May 2014 11:12:10 -0400 Subject: [PATCH] Don't auto-open the FileAccessor because then it opens twice --- .../RecentFileManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CSharp/Applications/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/RecentFileManager.cs b/CSharp/Applications/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/RecentFileManager.cs index 7379928a..1e5df6e1 100644 --- a/CSharp/Applications/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/RecentFileManager.cs +++ b/CSharp/Applications/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/RecentFileManager.cs @@ -94,6 +94,6 @@ internal static class RecentFileManager tagRecentItems.Elements.Add(tagDocuments); } - Document.Save(mom, xml, new FileAccessor(mvarDataFileName, true, true, true), true); + Document.Save(mom, xml, new FileAccessor(mvarDataFileName, true, true), true); } } \ No newline at end of file