mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-02 09:54:42 +01:00
Bug 2625 - Nyquist plug-ins Presets fail for plug-ins with "time" widgets
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user