| 22 | } |
| 23 | |
| 24 | void ScaleSlider::resized() |
| 25 | { |
| 26 | int y = 0; |
| 27 | scaleLabel.setBounds(0, y, getWidth() / 3, 30); |
| 28 | y += scaleLabel.getBounds().getBottom() + 10; |
| 29 | scaleSlider.setBounds(0, y, getWidth(), static_cast<int>(getHeight() / 2)); |
| 30 | } |
nothing calls this directly
no outgoing calls
no test coverage detected