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;