| 1458 | } |
| 1459 | |
| 1460 | void CtrlrPanel::luaSavePanel(const CtrlrPanelFileType fileType, const File &file) |
| 1461 | { |
| 1462 | if (luaPanelSavedCbk && !luaPanelSavedCbk.wasObjectDeleted()) |
| 1463 | { |
| 1464 | if (luaPanelSavedCbk->isValid()) |
| 1465 | { |
| 1466 | getCtrlrLuaManager().getMethodManager().call (luaPanelSavedCbk, (int)fileType, file); |
| 1467 | } |
| 1468 | } |
| 1469 | |
| 1470 | for (int i=0; i<ctrlrModulators.size(); i++) |
| 1471 | { |
| 1472 | ctrlrModulators[i]->getProcessor().handleUpdateNowIfNeeded(); |
| 1473 | } |
| 1474 | } |
| 1475 | |
| 1476 | void CtrlrPanel::setLuaDebug (const bool _debug) |
| 1477 | { |
no test coverage detected