mirror of
https://github.com/odrling/Aegisub
synced 2025-04-11 22:56:02 +02:00
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);
|
cur_row->emplace_back("", underline, italic, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
start = i + (text[i] == '\\');
|
if (text[i] == '\\')
|
||||||
|
start = ++i + 1;
|
||||||
|
else
|
||||||
|
start = i;
|
||||||
}
|
}
|
||||||
|
|
||||||
// add the remaining text
|
// add the remaining text
|
||||||
|
Loading…
x
Reference in New Issue
Block a user