| 550 | } |
| 551 | |
| 552 | bool CtrlrModulator::isDelayedProperty(const Identifier &name) |
| 553 | { |
| 554 | if (name == Ids::modulatorLinkedToModulator) |
| 555 | return (true); |
| 556 | |
| 557 | if (name == Ids::modulatorLinkedToModulatorProperty) |
| 558 | return (true); |
| 559 | |
| 560 | if (name == Ids::modulatorLinkedToPanelProperty) |
| 561 | return (true); |
| 562 | |
| 563 | if (name == Ids::modulatorVstExported) |
| 564 | return (true); |
| 565 | |
| 566 | if (name == Ids::modulatorValue && (owner.getCtrlrManagerOwner().getInstanceMode() == InstanceSingle || owner.getCtrlrManagerOwner().getInstanceMode() == InstanceSingleRestriced)) |
| 567 | return (true); |
| 568 | |
| 569 | return (false); |
| 570 | } |
| 571 | |
| 572 | void CtrlrModulator::setDelayedProperty(const Identifier &name, const var value) |
| 573 | { |
nothing calls this directly
no test coverage detected