forked from mia/Aegisub
Use START times rather than EXACT for keyframe markers so that they agree with the snap start/end to frame commands
Originally committed to SVN as r6693.
This commit is contained in:
parent
bdafd8f201
commit
313fa2e1eb
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ void AudioMarkerProviderKeyframes::Update() {
|
|||
markers.clear();
|
||||
markers.reserve(keyframes.size());
|
||||
for (size_t i = 0; i < keyframes.size(); ++i) {
|
||||
markers.push_back(AudioMarkerKeyframe(style.get(), timecodes.TimeAtFrame(keyframes[i])));
|
||||
markers.push_back(AudioMarkerKeyframe(style.get(), timecodes.TimeAtFrame(keyframes[i], agi::vfr::START)));
|
||||
}
|
||||
AnnounceMarkerMoved();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue