| 1361 | } |
| 1362 | |
| 1363 | void |
| 1364 | GuiAppInstance::removeAllKeyframesIndicators() |
| 1365 | { |
| 1366 | ///runs only in the main thread |
| 1367 | assert( QThread::currentThread() == qApp->thread() ); |
| 1368 | |
| 1369 | bool wasEmpty = _imp->timelineKeyframes.empty(); |
| 1370 | _imp->timelineKeyframes.clear(); |
| 1371 | if (!wasEmpty) { |
| 1372 | Q_EMIT keyframeIndicatorsChanged(); |
| 1373 | } |
| 1374 | } |
| 1375 | |
| 1376 | void |
| 1377 | GuiAppInstance::addKeyframeIndicator(SequenceTime time) |
no test coverage detected