n5ac/smoothlake#1380 Handle spaces properly in FDV GUI

This commit is contained in:
eric 2015-02-12 10:53:03 -06:00
parent 246b718157
commit 4398565ff2

View file

@ -305,6 +305,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;