mirror of https://github.com/odrling/Aegisub
Fix \N handling in EBU STL export
This commit is contained in:
parent
02ca3360ca
commit
ac5f40a543
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue