From bb8cf2187fd03363d07dda572596f7dbba1ac6a7 Mon Sep 17 00:00:00 2001 From: AdAstra-LD Date: Fri, 12 Feb 2021 03:51:13 +0100 Subject: [PATCH] Fixed text spacing [bgs size] --- DS_Map/Main Window.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DS_Map/Main Window.cs b/DS_Map/Main Window.cs index d29aeba..41d6893 100644 --- a/DS_Map/Main Window.cs +++ b/DS_Map/Main Window.cs @@ -3617,7 +3617,7 @@ namespace DSPRE { using (BinaryWriter writer = new BinaryWriter(File.OpenWrite(eb.FileName))) writer.Write(currentMapFile.GetTerrain()); - TerrainSizeTXT.Text = currentMapFile.bdhc.Length.ToString() + "B"; + TerrainSizeTXT.Text = currentMapFile.bdhc.Length.ToString() + " B"; MessageBox.Show("Terrain settings exported successfully!", "", MessageBoxButtons.OK, MessageBoxIcon.Information); } @@ -3630,7 +3630,7 @@ namespace DSPRE { currentMapFile.ImportSoundPlates(new FileStream(it.FileName, FileMode.Open)); MessageBox.Show("BackGround Sound data imported successfully!", "", MessageBoxButtons.OK, MessageBoxIcon.Information); - BGSSizeTXT.Text = currentMapFile.bgs.Length.ToString() + "B"; + BGSSizeTXT.Text = currentMapFile.bgs.Length.ToString() + " B"; } private void soundPlatesExportButton_Click(object sender, EventArgs e) { @@ -3643,7 +3643,7 @@ namespace DSPRE { using (BinaryWriter writer = new BinaryWriter(File.OpenWrite(eb.FileName))) writer.Write(currentMapFile.GetSoundPlates()); - BGSSizeTXT.Text = currentMapFile.bgs.Length.ToString() + "B"; + BGSSizeTXT.Text = currentMapFile.bgs.Length.ToString() + " B"; MessageBox.Show("BackGround Sound data exported successfully!", "", MessageBoxButtons.OK, MessageBoxIcon.Information); } #endregion