| 539 | } |
| 540 | |
| 541 | juce::var ScriptModulationMatrix::getValueModeData(String sourceId, String targetId) |
| 542 | { |
| 543 | for (auto t : targetData) |
| 544 | { |
| 545 | if (t->modId == targetId) |
| 546 | return t->getValueModeData(sourceId); |
| 547 | } |
| 548 | |
| 549 | return {}; |
| 550 | } |
| 551 | |
| 552 | void ScriptModulationMatrix::setUseUndoManager(bool shouldUseUndoManager) |
| 553 | { |
nothing calls this directly
no test coverage detected