Fix \N handling in EBU STL export

This commit is contained in:
Thomas Goyne 2014-05-26 19:35:46 -07:00
parent 02ca3360ca
commit ac5f40a543
1 changed files with 4 additions and 1 deletions

View File

@ -302,7 +302,10 @@ namespace
cur_row->emplace_back("", underline, italic, true);
}
start = i + (text[i] == '\\');
if (text[i] == '\\')
start = ++i + 1;
else
start = i;
}
// add the remaining text