Fix line order when splitting after current frame

This commit is contained in:
Ryan Lucia 2018-04-27 11:19:37 -04:00
parent 4d048e3c90
commit e516ab6e32
1 changed files with 3 additions and 3 deletions

View File

@ -697,8 +697,8 @@ static void duplicate_lines(agi::Context *c, int shift) {
new_diag->Start = c->videoController->TimeAtFrame(cur_frame, agi::vfr::START); new_diag->Start = c->videoController->TimeAtFrame(cur_frame, agi::vfr::START);
} }
else { else {
old_diag->Start = c->videoController->TimeAtFrame(cur_frame + 1, agi::vfr::START); old_diag->End = c->videoController->TimeAtFrame(cur_frame, agi::vfr::END);
new_diag->End = c->videoController->TimeAtFrame(cur_frame, agi::vfr::END); new_diag->Start = c->videoController->TimeAtFrame(cur_frame + 1, agi::vfr::START);
} }
/// @todo also split \t and \move? /// @todo also split \t and \move?