| 475 | } |
| 476 | |
| 477 | void FloatSliderLFOControl::SetUpFromSaveData() |
| 478 | { |
| 479 | mPinned = true; //only pinned sliders get saved |
| 480 | |
| 481 | UpdateFromSettings(); |
| 482 | UpdateVisibleControls(); |
| 483 | |
| 484 | if (mTargetCable == nullptr) |
| 485 | { |
| 486 | mTargetCable = new PatchCableSource(this, kConnectionType_Modulator); |
| 487 | mTargetCable->SetModulatorOwner(this); |
| 488 | AddPatchCableSource(mTargetCable); |
| 489 | } |
| 490 | } |
| 491 | |
| 492 | FloatSliderLFOControl* LFOPool::sLFOPool[LFO_POOL_SIZE]; |
| 493 | int LFOPool::sNextLFOIndex = 0; |
nothing calls this directly
no test coverage detected