mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-17 17:17:40 +02:00
Fix for bug #1083
This commit is contained in:
parent
cc3f237945
commit
0251dc54e0
@ -2594,7 +2594,10 @@ float VSTEffect::callGetParameter(int index)
|
|||||||
|
|
||||||
void VSTEffect::callSetParameter(int index, float value)
|
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);
|
mAEffect->setParameter(mAEffect, index, value);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user