Add spaces between the components of bezier curves

Originally committed to SVN as r5972.
This commit is contained in:
Thomas Goyne 2011-12-06 18:08:23 +00:00
parent 904e0769b1
commit 388580e0cc
1 changed files with 2 additions and 2 deletions

View File

@ -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;