| 4778 | } // Node::refreshCreatedViews |
| 4779 | |
| 4780 | bool |
| 4781 | Node::getHideInputsKnobValue() const |
| 4782 | { |
| 4783 | KnobBoolPtr k = _imp->hideInputs.lock(); |
| 4784 | |
| 4785 | if (!k) { |
| 4786 | return false; |
| 4787 | } |
| 4788 | |
| 4789 | return k->getValue(); |
| 4790 | } |
| 4791 | |
| 4792 | void |
| 4793 | Node::setHideInputsKnobValue(bool hidden) |
no test coverage detected