| 1476 | } |
| 1477 | |
| 1478 | void NoteStepSequencer::SetUpStepControls() |
| 1479 | { |
| 1480 | if (TheSynth->IsLoadingModule()) |
| 1481 | return; |
| 1482 | |
| 1483 | for (int i = 0; i < NSS_MAX_STEPS; ++i) |
| 1484 | { |
| 1485 | mToneDropdowns[i]->Clear(); |
| 1486 | for (int j = mNoteRange - 1; j >= 0; --j) |
| 1487 | mToneDropdowns[i]->AddLabel(NoteName(RowToPitch(j), false, true), j); |
| 1488 | } |
| 1489 | } |
| 1490 | |
| 1491 | void NoteStepSequencer::SaveLayout(ofxJSONElement& moduleInfo) |
| 1492 | { |
nothing calls this directly
no test coverage detected