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
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue