1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Send parameter changes to processor when received via the EditController

This commit is contained in:
hogliux 2016-08-01 09:42:33 +01:00
parent 3d1dc4ab0b
commit 4cf3c02998

View file

@ -224,6 +224,8 @@ public:
if (v != valueNormalized)
{
valueNormalized = v;
owner.setParameter (paramIndex, static_cast<float> (v));
changed();
return true;
}