How do I change the Mouse 'drag' style on a rotary slider, so this will happen?

I have some rotary sliders. To turn the knob around the rotary I have to basically click and drag on the blue round indicator to get it to move around.

Is there a way of changing the mouse-drag behavior so if I click and drag the mouse vertically continually upwards it will transport the blue indicator around the knob?

juce::Slider slider;

slider.setSliderStyle (juce::Slider::RotaryVerticalDrag);

from docs

1 Like

perfect :+1: