From 4398565ff22563f25fd062eb46cb6e447a3e24cb Mon Sep 17 00:00:00 2001 From: eric Date: Thu, 12 Feb 2015 10:53:03 -0600 Subject: [PATCH] n5ac/smoothlake#1380 Handle spaces properly in FDV GUI --- pc/CODEC2 GUI/CODEC2 GUI/Form1.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pc/CODEC2 GUI/CODEC2 GUI/Form1.cs b/pc/CODEC2 GUI/CODEC2 GUI/Form1.cs index 541d371..2a69bd4 100644 --- a/pc/CODEC2 GUI/CODEC2 GUI/Form1.cs +++ b/pc/CODEC2 GUI/CODEC2 GUI/Form1.cs @@ -304,6 +304,9 @@ namespace CODEC2_GUI */ start_pos += 1; // ignore beginning quotes string value = status.Substring(start_pos); + + // handle the remapped spaces + value = value.Replace("\u007f", " "); Control c = FindControlByName(this, "txtIn" + slc.Index); if (c == null) return;