| 1553 | } |
| 1554 | |
| 1555 | void |
| 1556 | GuiAppInstance::removeNodeKeyframesFromTimeline(Node* node) |
| 1557 | { |
| 1558 | ///runs only in the main thread |
| 1559 | assert( QThread::currentThread() == qApp->thread() ); |
| 1560 | |
| 1561 | node->hideKeyframesFromTimeline(true); |
| 1562 | } |
| 1563 | |
| 1564 | void |
| 1565 | GuiAppInstance::getKeyframes(std::list<SequenceTime>* keys) const |
nothing calls this directly
no test coverage detected