Skip to content

Commit

Permalink
Add line duration in VideoBox
Browse files Browse the repository at this point in the history
Fix #99
  • Loading branch information
wangqr committed Apr 10, 2021
1 parent d7a4743 commit dcb036d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video_box.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ void VideoBox::UpdateTimeBoxes() {
VideoSubsPos->SetValue("");
else {
VideoSubsPos->SetValue(fmt_wx(
"%+dms; %+dms",
"%+dms; %+dms; %dms",
time - active_line->Start,
time - active_line->End));
time - active_line->End, active_line->End - active_line->Start));
}
}

0 comments on commit dcb036d

Please sign in to comment.