MCPcopy Create free account
hub / github.com/MrKepzie/Natron / hideKeyframesFromTimeline

Method hideKeyframesFromTimeline

Engine/Node.cpp:9688–9699  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9686}
9687
9688void
9689Node::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
9701bool
9702Node::areKeyframesVisibleOnTimeline() const

Callers 8

onSettingsPanelClosedMethod · 0.80
onSelectionChangedMethod · 0.80
resetInstancesMethod · 0.80
setClosedInternalMethod · 0.80
redoMethod · 0.80

Calls 3

getAppFunction · 0.85
isBackgroundMethod · 0.45

Tested by

no test coverage detected