| 1482 | } |
| 1483 | |
| 1484 | void |
| 1485 | GuiAppInstance::removeUserKeyFrameIndicator(SequenceTime time) |
| 1486 | { |
| 1487 | ///runs only in the main thread |
| 1488 | assert( QThread::currentThread() == qApp->thread() ); |
| 1489 | |
| 1490 | std::list<SequenceTime>::iterator it = std::find(_imp->timelineUserKeys.begin(), _imp->timelineUserKeys.end(), time); |
| 1491 | if ( it != _imp->timelineUserKeys.end() ) { |
| 1492 | _imp->timelineUserKeys.erase(it); |
| 1493 | Q_EMIT keyframeIndicatorsChanged(); |
| 1494 | } |
| 1495 | } |
| 1496 | |
| 1497 | void |
| 1498 | GuiAppInstance::removeUserMultipleKeyframeIndicator(const std::list<SequenceTime> & keys, |
no test coverage detected