Format "Csv" and line breaks should now be really fixed...

git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@1907 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
niksedk 2013-07-03 15:47:13 +00:00
parent cad949e1e3
commit 0057b9cece

View File

@ -70,7 +70,7 @@ namespace Nikse.SubtitleEdit.Logic.SubtitleFormats
string text = Utilities.FixQuotes(parts[3]);
p = new Paragraph(text, start, end);
subtitle.Paragraphs.Add(p);
continuation = text.StartsWith("\"") && !text.EndsWith("\"");
continuation = parts[3].StartsWith("\"") && !parts[3].EndsWith("\"");
}
catch
{