| 91 | , label_(label) {} |
| 92 | |
| 93 | juce::String Knob::getLabelText() { |
| 94 | char text[32] = ""; |
| 95 | return parameter_get_display(parameter.getId(), parameter.getValue(), text, sizeof text) ? text : ""; |
| 96 | } |
| 97 | |
| 98 | void Knob::mouseEnter(const juce::MouseEvent &) { label_->show(this, getLabelText()); } |
| 99 |
nothing calls this directly
no test coverage detected