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:
parent
f2abbceb2e
commit
b6ceff9b2a
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user