Index: src/DeltaShell/DeltaShell.Gui/DeltaShellGui.cs =================================================================== diff -u -r893e87bb682400420fd124ca200c511c44f363e5 -r22ecee6c202a4fc87caa5b5fa30f472ad721e198 --- src/DeltaShell/DeltaShell.Gui/DeltaShellGui.cs (.../DeltaShellGui.cs) (revision 893e87bb682400420fd124ca200c511c44f363e5) +++ src/DeltaShell/DeltaShell.Gui/DeltaShellGui.cs (.../DeltaShellGui.cs) (revision 22ecee6c202a4fc87caa5b5fa30f472ad721e198) @@ -695,15 +695,14 @@ //enable activation AFTER initialization documentViews.IgnoreActivation = false; toolWindowViews.IgnoreActivation = false; -#if !MONO + if (Settings.Default.SettingsKey.Contains("mruList")) { if (Settings.Default["mruList"] == null) { Settings.Default["mruList"] = new StringCollection(); } } -#endif } private void HandleApplicationExit(object sender, EventArgs e) @@ -937,7 +936,6 @@ // TODO: incapsulate any knowledge of the plugin XML inside plugin configurator, the rest of the system should not know about it! private void InitToolWindows() { -#if !MONO log.Info(Resources.DeltaShellGui_InitToolWindows_Creating_document_window_manager____); var allowedDocumentWindowLocations = new[] @@ -990,7 +988,6 @@ mainWindow.InitializeToolWindows(); log.Debug(Resources.DeltaShellGui_InitToolWindows_Finished_InitToolWindows); -#endif mainWindow.SubscribeToGui(); }