| 212 | } |
| 213 | |
| 214 | void RadioSequencer::DrawModule() |
| 215 | { |
| 216 | if (Minimized() || IsVisible() == false) |
| 217 | return; |
| 218 | |
| 219 | mGrid->Draw(); |
| 220 | mIntervalSelector->Draw(); |
| 221 | mLengthSlider->Draw(); |
| 222 | mGridControlTarget->Draw(); |
| 223 | |
| 224 | for (int i = 0; i < mControlCables.size(); ++i) |
| 225 | { |
| 226 | mControlCables[i]->SetManualPosition(GetRect(true).width, mGrid->GetPosition(true).y + (mGrid->GetHeight() / mGrid->GetRows()) * (i + .5f)); |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | void RadioSequencer::OnClicked(float x, float y, bool right) |
| 231 | { |
nothing calls this directly
no test coverage detected