| 1524 | } |
| 1525 | |
| 1526 | void |
| 1527 | GuiAppInstance::addNodeKeyframesToTimeline(Node* node) |
| 1528 | { |
| 1529 | ///runs only in the main thread |
| 1530 | assert( QThread::currentThread() == qApp->thread() ); |
| 1531 | |
| 1532 | node->showKeyframesOnTimeline(true); |
| 1533 | } |
| 1534 | |
| 1535 | void |
| 1536 | GuiAppInstance::removeNodesKeyframesFromTimeline(const std::list<Node*> & nodes) |
nothing calls this directly
no test coverage detected