| 103 | }; |
| 104 | |
| 105 | explicit ShapeButton(const juce::String &name, Shape shape) |
| 106 | : juce::ShapeButton(name, juce::Colours::lightgrey, juce::Colours::lightgrey, juce::Colours::white) |
| 107 | , shape_(shape) {} |
| 108 | |
| 109 | void paintButton(juce::Graphics &g, bool /*shouldDrawButtonAsHighlighted*/, bool /*shouldDrawButtonAsDown*/) override { |
| 110 | juce::Path path; |
nothing calls this directly
no outgoing calls
no test coverage detected