Merge pull request #245 from alfaproject/unknownsubtitle11_underline

Fix UnknownSubtitle11 underline subtitles
This commit is contained in:
Nikolaj Olsson 2014-09-14 23:56:44 +02:00
commit 997b7d1452

View File

@ -121,8 +121,8 @@ namespace Nikse.SubtitleEdit.Logic.SubtitleFormats
else if (line.StartsWith("<u>") || underlineOn)
{
italicOn = false;
boldOn = true;
underlineOn = false;
boldOn = false;
underlineOn = true;
lineSb.Append("{y:u}"); // underline single line
}