forked from mia/Aegisub
Fix line order when splitting after current frame
This commit is contained in:
parent
b00285cf71
commit
48869ae0ad
1 changed files with 3 additions and 3 deletions
|
@ -697,8 +697,8 @@ static void duplicate_lines(agi::Context *c, int shift) {
|
|||
new_diag->Start = c->videoController->TimeAtFrame(cur_frame, agi::vfr::START);
|
||||
}
|
||||
else {
|
||||
old_diag->Start = c->videoController->TimeAtFrame(cur_frame + 1, agi::vfr::START);
|
||||
new_diag->End = c->videoController->TimeAtFrame(cur_frame, agi::vfr::END);
|
||||
old_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?
|
||||
|
|
Loading…
Reference in a new issue