From 2e0b6bab0ef84b6eeea575b65f3af56103b99520 Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Mon, 7 Feb 2011 15:11:34 +0100 Subject: [PATCH] Fix WindowBounds saving code. --- ILSpy/SessionSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ILSpy/SessionSettings.cs b/ILSpy/SessionSettings.cs index a6be9405f..e419e12fe 100644 --- a/ILSpy/SessionSettings.cs +++ b/ILSpy/SessionSettings.cs @@ -78,7 +78,7 @@ namespace ICSharpCode.ILSpy doc.Add(new XElement("ActiveTreeViewPath", ActiveTreeViewPath.Select(p => new XElement("Node", p)))); } doc.Add(new XElement("WindowState", ToString(this.WindowState))); - doc.Add(new XElement("WindowState", ToString(this.WindowState))); + doc.Add(new XElement("WindowBounds", ToString(this.WindowBounds))); ILSpySettings.SaveSettings(doc); }