mirror of
https://github.com/n5ac/smartsdr-dsp.git
synced 2025-12-06 03:01:59 +01:00
n5ac/smoothlake#1380 Handle spaces properly in FDV GUI
This commit is contained in:
parent
246b718157
commit
4398565ff2
|
|
@ -305,6 +305,9 @@ namespace CODEC2_GUI
|
||||||
start_pos += 1; // ignore beginning quotes
|
start_pos += 1; // ignore beginning quotes
|
||||||
string value = status.Substring(start_pos);
|
string value = status.Substring(start_pos);
|
||||||
|
|
||||||
|
// handle the remapped spaces
|
||||||
|
value = value.Replace("\u007f", " ");
|
||||||
|
|
||||||
Control c = FindControlByName(this, "txtIn" + slc.Index);
|
Control c = FindControlByName(this, "txtIn" + slc.Index);
|
||||||
if (c == null) return;
|
if (c == null) return;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue