Update change log

This commit is contained in:
Nikolaj Olsson 2024-04-05 19:42:06 +02:00
parent b02f37d896
commit 580075b6fd
2 changed files with 3 additions and 1 deletions

View File

@ -39,6 +39,7 @@
* Fix "Batch convert" crash on Linux - thx ivandrofly/aggravatedanteater
* Fix for missing lines when embedding soft subs in .mp4 files - thx Joe
* Fix layout change crash from un-docked state - thx highflowerG
* Fix crash in export to "Cavena 890" - thx yovelcohen
4.0.4 (17th March 2024)

View File

@ -1886,12 +1886,13 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
sb.Append(s);
}
}
if (fontColorOn)
{
sb.Append("</font>"); // white
}
return sb.ToString();
}
}
}