mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
Fix bug in BinEdit BDN/XML writing - thx von Suppé :)
This commit is contained in:
parent
99b843c2f0
commit
11c5934e11
@ -56,6 +56,7 @@
|
|||||||
* Fix auto generate waveform with video with empty audio - thx LeonCheung
|
* Fix auto generate waveform with video with empty audio - thx LeonCheung
|
||||||
* Fix a few broken spell check dictionary links
|
* Fix a few broken spell check dictionary links
|
||||||
* Fix removing italic when toggling music symbols - thx Charvelx04
|
* Fix removing italic when toggling music symbols - thx Charvelx04
|
||||||
|
* Fix bug in BinEdit BDN/XML writing - thx von Suppé
|
||||||
|
|
||||||
|
|
||||||
4.0.3 (23rd December 2023)
|
4.0.3 (23rd December 2023)
|
||||||
|
@ -1534,7 +1534,7 @@ namespace Nikse.SubtitleEdit.Forms.BinaryEdit
|
|||||||
if (convertToSmpte)
|
if (convertToSmpte)
|
||||||
{
|
{
|
||||||
startTime = new TimeCode(startTime.TotalMilliseconds / 1.001);
|
startTime = new TimeCode(startTime.TotalMilliseconds / 1.001);
|
||||||
endTime = new TimeCode(startTime.TotalMilliseconds / 1.001);
|
endTime = new TimeCode(endTime.TotalMilliseconds / 1.001);
|
||||||
}
|
}
|
||||||
|
|
||||||
sb.AppendLine("<Event InTC=\"" + ToHHMMSSFF(startTime) + "\" OutTC=\"" + ToHHMMSSFF(endTime) + "\" Forced=\"" + extra.IsForced.ToString().ToLowerInvariant() + "\">");
|
sb.AppendLine("<Event InTC=\"" + ToHHMMSSFF(startTime) + "\" OutTC=\"" + ToHHMMSSFF(endTime) + "\" Forced=\"" + extra.IsForced.ToString().ToLowerInvariant() + "\">");
|
||||||
|
Loading…
Reference in New Issue
Block a user