1
0
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:
Steve Daulton 2018-04-28 19:58:23 +01:00
parent da01838758
commit 16ff3b4053

View File

@ -441,6 +441,12 @@ bool NyquistEffect::SetAutomationParameters(CommandParameters & parms)
wxString 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)
{