| 15 | class TooltipWindow final : public juce::TooltipWindow { |
| 16 | public: |
| 17 | explicit TooltipWindow(Component* parent_component, const int milliseconds_before_appears = 700) |
| 18 | : juce::TooltipWindow(parent_component, milliseconds_before_appears) { |
| 19 | setInterceptsMouseClicks(false, false); |
| 20 | } |
| 21 | |
| 22 | juce::String getTipFor(Component& c) override { |
| 23 | return juce::TooltipWindow::getTipFor(c); |
nothing calls this directly
no outgoing calls
no test coverage detected