| 1571 | } |
| 1572 | |
| 1573 | void |
| 1574 | GuiAppInstance::removeNodeKeyframesFromTimeline(Node* node) |
| 1575 | { |
| 1576 | ///runs only in the main thread |
| 1577 | assert( QThread::currentThread() == qApp->thread() ); |
| 1578 | |
| 1579 | node->hideKeyframesFromTimeline(true); |
| 1580 | } |
| 1581 | |
| 1582 | void |
| 1583 | GuiAppInstance::getKeyframes(std::list<SequenceTime>* keys) const |
nothing calls this directly
no test coverage detected