| 281 | } |
| 282 | |
| 283 | void CtrlrLuaManager::restoreState (const ValueTree &savedState) |
| 284 | { |
| 285 | if (savedState.isValid()) |
| 286 | { |
| 287 | if (savedState.getChildWithName(Ids::luaManagerMethods).isValid()) |
| 288 | { |
| 289 | methodManager->restoreState (savedState.getChildWithName(Ids::luaManagerMethods)); |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | methodManager->wrapUtilities(); |
| 294 | } |
| 295 | |
| 296 | void CtrlrLuaManager::valueTreePropertyChanged (ValueTree &treeWhosePropertyHasChanged, const Identifier &property) |
| 297 | { |
no test coverage detected