| 9686 | } |
| 9687 | |
| 9688 | void |
| 9689 | Node::hideKeyframesFromTimeline(bool emitSignal) |
| 9690 | { |
| 9691 | assert( QThread::currentThread() == qApp->thread() ); |
| 9692 | if ( !_imp->keyframesDisplayedOnTimeline || appPTR->isBackground() ) { |
| 9693 | return; |
| 9694 | } |
| 9695 | _imp->keyframesDisplayedOnTimeline = false; |
| 9696 | std::list<SequenceTime> keys; |
| 9697 | getAllKnobsKeyframes(&keys); |
| 9698 | getApp()->removeMultipleKeyframeIndicator(keys, emitSignal); |
| 9699 | } |
| 9700 | |
| 9701 | bool |
| 9702 | Node::areKeyframesVisibleOnTimeline() const |
no test coverage detected