| 5485 | } |
| 5486 | |
| 5487 | void |
| 5488 | Node::setNodeDisabled(bool disabled) |
| 5489 | { |
| 5490 | KnobBoolPtr b = _imp->disableNodeKnob.lock(); |
| 5491 | |
| 5492 | if (b) { |
| 5493 | b->setValue(disabled); |
| 5494 | |
| 5495 | // Clear the actions cache because if this function is called from another thread, the hash will not be incremented |
| 5496 | _imp->effect->clearActionsCache(); |
| 5497 | } |
| 5498 | } |
| 5499 | |
| 5500 | void |
| 5501 | Node::showKeyframesOnTimeline(bool emitSignal) |
no test coverage detected