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

Fix for GenericAudioProcessorEditor parameter changes.

This commit is contained in:
jules 2012-08-24 15:45:43 +01:00
parent 08ca3ac5a7
commit 9961c990bb

View file

@ -92,7 +92,7 @@ private:
const float newVal = (float) getValue();
if (owner.getParameter (index) != newVal)
owner.setParameter (index, newVal);
owner.setParameterNotifyingHost (index, newVal);
}
String getTextFromValue (double /*value*/)