diff --git a/libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.cpp b/libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.cpp index a944f426..a25a29a0 100644 --- a/libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.cpp +++ b/libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.cpp @@ -133,14 +133,14 @@ void LookAndFeel::drawRotarySliderBase (juce::Graphics& g, g.fillEllipse (rx, ry, rw, rw); juce::Path p; - const auto pointerLength = radius * 0.33f; - const auto pointerThickness = radius * .066f; + const auto pointerLength = radius * 0.41f; + const auto pointerThickness = radius * .085f; const auto pointerX = -pointerThickness * 0.5f; const auto initialPointerY = -radius; // Increasing this value will cause the pointer to be drawn closer // to the center of the slider. - const auto sliderEdgeOffset = juce::roundToInt (juce::jmax ((radius * .1f), 1.0f)); + const auto sliderEdgeOffset = juce::roundToInt (juce::jmax ((radius * .12f), 1.0f)); const auto pointerY = initialPointerY + sliderEdgeOffset; const auto cornerSize = pointerThickness * .35f;