Browse Source

Fix WindowBounds saving code.

pull/1/head
Daniel Grunwald 15 years ago
parent
commit
2e0b6bab0e
  1. 2
      ILSpy/SessionSettings.cs

2
ILSpy/SessionSettings.cs

@ -78,7 +78,7 @@ namespace ICSharpCode.ILSpy @@ -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);
}

Loading…
Cancel
Save