Fix timecode generator progress

This commit is contained in:
Martijn van Berkel (Flitskikker) 2023-07-16 20:51:38 +02:00
parent 356b1c1c07
commit c200394f8d

View File

@ -44,7 +44,7 @@ namespace Nikse.SubtitleEdit.Forms.BeautifyTimeCodes
if (videoInfo != null && videoInfo.TotalMilliseconds > 0)
{
_duration = videoInfo.TotalMilliseconds;
_duration = videoInfo.TotalSeconds;
}
_videoInfo = videoInfo;