Automation error with JUCE

Its a plugin exported from Max MSP using RNBO. I am following their start up code for the Custom UI.

rnbo to juce

They do suggest begin and end gesture function on sliderValueChanged

  auto normalizedValue = coreObject.convertToNormalizedParameterValue(index, newVal);
  param->beginChangeGesture();
  param->setValueNotifyingHost(normalizedValue);
  param->endChangeGesture();
1 Like