| 291 | } |
| 292 | |
| 293 | void ModulatableSlider::resized() |
| 294 | { |
| 295 | // First, call the base class's resized() to let it draw the slider itself. |
| 296 | juce::Slider::resized(); |
| 297 | |
| 298 | // Then, place our label in the area designated for the textbox. |
| 299 | // This ensures it's perfectly aligned above the knob. |
| 300 | label.setBounds(0, 0, getWidth(), TEXTBOX_HEIGHT); |
| 301 | } |
| 302 | |
| 303 | void ModulatableSlider::timerCallback() |
| 304 | { |
nothing calls this directly
no outgoing calls
no test coverage detected