| 1392 | } |
| 1393 | |
| 1394 | void |
| 1395 | GuiAppInstance::addKeyframeIndicator(SequenceTime time) |
| 1396 | { |
| 1397 | ///runs only in the main thread |
| 1398 | assert( QThread::currentThread() == qApp->thread() ); |
| 1399 | |
| 1400 | _imp->timelineKeyframes.push_back(time); |
| 1401 | Q_EMIT keyframeIndicatorsChanged(); |
| 1402 | } |
| 1403 | |
| 1404 | void |
| 1405 | GuiAppInstance::addMultipleKeyframeIndicatorsAdded(const std::list<SequenceTime> & keys, |
no test coverage detected