| 187 | } |
| 188 | |
| 189 | void BandPanel::createComboBoxes() |
| 190 | { |
| 191 | for (int i = 0; i < 4; ++i) |
| 192 | { |
| 193 | setMenu(&distortionModes[i]); |
| 194 | modeAttachments[i] = std::make_unique<ComboBoxAttachment>( |
| 195 | processor.treeState, |
| 196 | ParameterIDAndName::getIDString(MODE_ID, i), |
| 197 | distortionModes[i]); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | void BandPanel::setupComponentGroups() |
| 202 | { |
nothing calls this directly
no test coverage detected