diff --git a/Changelog.txt b/Changelog.txt index 54c056fbb..b53f13bea 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -55,7 +55,8 @@ * Fix crash in "Fix commo errors" - thx dramirvf * Fix auto generate waveform with video with empty audio - thx LeonCheung * 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) diff --git a/src/ui/Forms/BinaryEdit/BinEdit.cs b/src/ui/Forms/BinaryEdit/BinEdit.cs index 3c5437fca..8446adddb 100644 --- a/src/ui/Forms/BinaryEdit/BinEdit.cs +++ b/src/ui/Forms/BinaryEdit/BinEdit.cs @@ -1534,7 +1534,7 @@ namespace Nikse.SubtitleEdit.Forms.BinaryEdit if (convertToSmpte) { startTime = new TimeCode(startTime.TotalMilliseconds / 1.001); - endTime = new TimeCode(startTime.TotalMilliseconds / 1.001); + endTime = new TimeCode(endTime.TotalMilliseconds / 1.001); } sb.AppendLine("");