1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-24 16:20:05 +02:00
This commit is contained in:
Leland Lucius 2015-08-01 01:31:26 -05:00
parent cc3f237945
commit 0251dc54e0

View File

@ -2594,7 +2594,10 @@ float VSTEffect::callGetParameter(int index)
void VSTEffect::callSetParameter(int index, float value)
{
if (callDispatcher(effCanBeAutomated, 0, index, NULL, 0.0))
// LL: Apparently, some VSTs do not respond to this call, even though
// the parameters can be automated.
// See bug #1083.
// if (callDispatcher(effCanBeAutomated, 0, index, NULL, 0.0))
{
mAEffect->setParameter(mAEffect, index, value);