| 72 | } |
| 73 | |
| 74 | FloatSliderLFOControl* FloatSlider::AcquireLFO() |
| 75 | { |
| 76 | if (mLFOControl == nullptr) |
| 77 | { |
| 78 | if (GetParent() != TheSynth->GetTopModalFocusItem()) //popups don't get these |
| 79 | SetLFO(LFOPool::GetLFO(this)); |
| 80 | } |
| 81 | return mLFOControl; |
| 82 | } |
| 83 | |
| 84 | void FloatSlider::SetLFO(FloatSliderLFOControl* lfo) |
| 85 | { |
no test coverage detected