Fixed bug in reading of SSA files - thx Péter

git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@312 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
niksedk 2011-02-04 22:35:00 +00:00
parent 5221c480b1
commit 9a06c66546

View File

@ -246,7 +246,7 @@ Format: Marked, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
else if (i == indexText)
text = splittedLine[i];
else if (i > indexText)
text += splittedLine[i];
text += "," + splittedLine[i];
}
try