| 1034 | } |
| 1035 | |
| 1036 | void NoteStepSequencer::UpdateVelocityGridPos() |
| 1037 | { |
| 1038 | mVelocityGrid->SetDimensions(mGrid->GetWidth(), 45); |
| 1039 | float gridX, gridY; |
| 1040 | mGrid->GetPosition(gridX, gridY, true); |
| 1041 | mVelocityGrid->SetPosition(gridX, gridY + mGrid->GetHeight()); |
| 1042 | mLoopResetPointSlider->PositionTo(mVelocityGrid, kAnchor_Below); |
| 1043 | mLoopResetPointSlider->SetDimensions(mVelocityGrid->GetWidth(), 15); |
| 1044 | } |
| 1045 | |
| 1046 | void NoteStepSequencer::OnMidiNote(MidiNote& note) |
| 1047 | { |
nothing calls this directly
no test coverage detected