| 24 | } |
| 25 | |
| 26 | void QuantizeForceSlider::paint(Graphics& g) |
| 27 | { |
| 28 | g.setColour(juce::Colours::black); |
| 29 | g.setFont(UIDefines::DROPDOWN_FONT()); |
| 30 | |
| 31 | g.drawText(std::to_string(static_cast<int>(std::round(mSlider.getValue() * 100.0f))), |
| 32 | Rectangle<int>(133, 0, 23, 17), |
| 33 | juce::Justification::centredRight); |
| 34 | } |
| 35 | |
| 36 | void QuantizeForceSlider::setTooltip(const String& inTooltip) |
| 37 | { |
nothing calls this directly
no test coverage detected