| 152 | } |
| 153 | |
| 154 | void MasterPanel::paint(juce::Graphics& g) { |
| 155 | // Panel rectangle |
| 156 | g.setColour(Utils::Colour::PANEL); |
| 157 | g.fillRoundedRectangle(getLocalBounds().toFloat(), 10); |
| 158 | } |
| 159 | |
| 160 | void MasterPanel::resized() { |
| 161 | auto r = getLocalBounds().reduced(Utils::PADDING); |
nothing calls this directly
no outgoing calls
no test coverage detected