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

Fixed a mistake in the demo plugin.

This commit is contained in:
jules 2016-02-22 12:27:59 +00:00
parent 203e4e8c67
commit 79332132b5

View file

@ -28,7 +28,7 @@ public:
void valueChanged() override
{
param.setValue ((float) Slider::getValue());
param.setValueNotifyingHost ((float) Slider::getValue());
}
void timerCallback() override { updateSliderPos(); }