| 5511 | } |
| 5512 | |
| 5513 | void |
| 5514 | Node::hideKeyframesFromTimeline(bool emitSignal) |
| 5515 | { |
| 5516 | assert( QThread::currentThread() == qApp->thread() ); |
| 5517 | if ( !_imp->keyframesDisplayedOnTimeline || appPTR->isBackground() ) { |
| 5518 | return; |
| 5519 | } |
| 5520 | _imp->keyframesDisplayedOnTimeline = false; |
| 5521 | std::list<SequenceTime> keys; |
| 5522 | getAllKnobsKeyframes(&keys); |
| 5523 | getApp()->removeMultipleKeyframeIndicator(keys, emitSignal); |
| 5524 | } |
| 5525 | |
| 5526 | bool |
| 5527 | Node::areKeyframesVisibleOnTimeline() const |
no test coverage detected