mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-28 14:18:41 +02:00
Nyquist text widget must not fail verification
This commit is contained in:
parent
da01838758
commit
16ff3b4053
@ -441,6 +441,12 @@ bool NyquistEffect::SetAutomationParameters(CommandParameters & parms)
|
|||||||
wxString val;
|
wxString val;
|
||||||
good = parms.Read(ctrl.var, &val);
|
good = parms.Read(ctrl.var, &val);
|
||||||
}
|
}
|
||||||
|
else if (ctrl.type == NYQ_CTRL_TEXT)
|
||||||
|
{
|
||||||
|
// This "control" is just fixed text (nothing to save or restore),
|
||||||
|
// so control is always "good".
|
||||||
|
good = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (!good)
|
if (!good)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user