| 160 | } |
| 161 | |
| 162 | void CtrlrManager::allPanelsInitialized() |
| 163 | { |
| 164 | listeners.call (&CtrlrManager::Listener::managerStateChanged, PanelsLoaded); |
| 165 | |
| 166 | for (int i=0; i<ctrlrModulators.size(); i++) |
| 167 | { |
| 168 | ctrlrModulators[i]->allModulatorsInitialized(); |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | CtrlrPanel *CtrlrManager::addPanel(const ValueTree &savedState, const bool showUI) |
| 173 | { |
nothing calls this directly
no test coverage detected