| 1542 | } |
| 1543 | |
| 1544 | void |
| 1545 | GuiAppInstance::addNodeKeyframesToTimeline(Node* node) |
| 1546 | { |
| 1547 | ///runs only in the main thread |
| 1548 | assert( QThread::currentThread() == qApp->thread() ); |
| 1549 | |
| 1550 | node->showKeyframesOnTimeline(true); |
| 1551 | } |
| 1552 | |
| 1553 | void |
| 1554 | GuiAppInstance::removeNodesKeyframesFromTimeline(const std::list<Node*> & nodes) |
nothing calls this directly
no test coverage detected