| 209 | } |
| 210 | |
| 211 | void PulseSequence::Resize(float w, float h) |
| 212 | { |
| 213 | mWidth = MAX(w, 254); |
| 214 | mHeight = MAX(h, 58); |
| 215 | mVelocityGrid->SetDimensions(mWidth - 6, mHeight - 38); |
| 216 | } |
| 217 | |
| 218 | void PulseSequence::MouseReleased() |
| 219 | { |
nothing calls this directly
no test coverage detected