1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-17 00:57:40 +02:00

Bug 2625 - Nyquist plug-ins Presets fail for plug-ins with "time" widgets

This commit is contained in:
Leland Lucius 2021-01-20 10:45:13 -06:00
parent f2abbceb2e
commit b6ceff9b2a

View File

@ -2601,6 +2601,11 @@ bool NyquistEffect::TransferDataToEffectWindow()
wxSlider *s = (wxSlider *) mUIParent->FindWindow(ID_Slider + i);
s->SetValue(val);
}
else if (ctrl.type == NYQ_CTRL_TIME)
{
NumericTextCtrl *n = (NumericTextCtrl *) mUIParent->FindWindow(ID_Time + i);
n->SetValue(ctrl.val);
}
}
return true;