forked from mia/Aegisub
Add spaces between the components of bezier curves
Originally committed to SVN as r5972.
This commit is contained in:
parent
904e0769b1
commit
388580e0cc
1 changed files with 2 additions and 2 deletions
|
@ -79,8 +79,8 @@ wxString Spline::EncodeToASS() {
|
|||
result += "b ";
|
||||
last = 'b';
|
||||
}
|
||||
result += scale.ToScriptCoords(cur->p2).DStr(' ');
|
||||
result += scale.ToScriptCoords(cur->p3).DStr(' ');
|
||||
result += scale.ToScriptCoords(cur->p2).DStr(' ') + " ";
|
||||
result += scale.ToScriptCoords(cur->p3).DStr(' ') + " ";
|
||||
result += scale.ToScriptCoords(cur->p4).DStr(' ');
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue