| 1459 | } |
| 1460 | |
| 1461 | void |
| 1462 | GuiAppInstance::addUserKeyframeIndicator(SequenceTime time) |
| 1463 | { |
| 1464 | ///runs only in the main thread |
| 1465 | assert( QThread::currentThread() == qApp->thread() ); |
| 1466 | |
| 1467 | _imp->timelineUserKeys.push_back(time); |
| 1468 | Q_EMIT keyframeIndicatorsChanged(); |
| 1469 | } |
| 1470 | |
| 1471 | void |
| 1472 | GuiAppInstance::addUserMultipleKeyframeIndicatorsAdded(const std::list<SequenceTime> & keys, |
no test coverage detected