VST3 parameter name changes don't work

Hi, I can’t see any methods available to set parameter name and range on AudioProcessorParameter - how are people changing the name?

thx

I have a subclass of AudioProcessorParameter for my own plugins. It overrides AudioProcessorParameter::getName(…) and just returns the current name, but when I need to change names, it’ll return a different name and I call AudioProcessor::updateHostDisplay() to make the host fetch the new ones. Which would be okay, if it would work correctly for VST3 as well, but unfortunately it always sends kLatencyChanged along with the needed kParamTitlesChanged which is a problem for some hosts.

got ya - thx