SliderAttachment makes Slider discrete[SOLVED]

I have a few Sliders which will be discrete after connecting them via a sliderattachement, and even the slider graphics will only move in these discrete steps (0.01 increments for a 0…1 range, which becomes really apparent with a skew factor)

I checked the AudioParameterFloats, as well, but nothing really sets them apart from the sliders which are working just fine…

I fixed it by explicitly setting the “interval” in the Normalizable range of the audioparameter to zero:

std::make_unique<AudioParameterFloat>(
          "delay_feedback", "Delay Feedback",
          NormalisableRange<float>(FEEDBACK_MIN, FEEDBACK_MAX, 0.f, FEEDBACK_SKEW), FEEDBACK_DEFAULT),