Slider value labels identical to parameter print

Just want to make sure I’m not missing something obvious but is there really no way to make a slider’s value label simply print the same as the parameter it’s attached to without manually setting the custom print function for each slider?

noiseAttrib = AudioParameterFloatAttributes().withStringFromValueFunction(noisePercent).withValueFromStringFunction(noiseTextToValue);

We go through the trouble of connecting custom print logic to the parameters themselves during creation and then when we attach them we have to make sure to pass the same logic a second time? Seems like it’d make the most sense for the default behavior when making a slider attachment to just use identical stringFromValue and valueFromString functions when a parameter attachment is created.

You may use APVTS::SliderAttachment instead:

https://docs.juce.com/master/classAudioProcessorValueTreeState_1_1SliderAttachment.html