From b77a59857cc0ae1f97b28d511c675f2d68b8615e Mon Sep 17 00:00:00 2001 From: Sour Date: Mon, 27 May 2019 16:48:07 -0400 Subject: [PATCH] Debugger: Add whitespace/indentation to workspace xml files --- GUI.NET/Config/DebugInfo.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/GUI.NET/Config/DebugInfo.cs b/GUI.NET/Config/DebugInfo.cs index bd412661..b0d14ef4 100644 --- a/GUI.NET/Config/DebugInfo.cs +++ b/GUI.NET/Config/DebugInfo.cs @@ -74,6 +74,7 @@ namespace Mesen.GUI.Config try { XmlWriterSettings ws = new XmlWriterSettings(); ws.NewLineHandling = NewLineHandling.Entitize; + ws.Indent = true; XmlSerializer xmlSerializer = new XmlSerializer(typeof(DebugWorkspace)); using(XmlWriter xmlWriter = XmlWriter.Create(_filePath, ws)) {