Fix Issue 379: Properly remap point-based elements

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1114 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Jeff Schiller 2009-12-24 23:35:32 +00:00
parent b66c9824ff
commit be1a08b7f3
1 changed files with 2 additions and 2 deletions

View File

@ -1678,9 +1678,8 @@ function BatchCommand(text) {
var old_start_transform = start_transform;
start_transform = child.getAttribute("transform");
if(angle || hasMatrixTransform(childTlist)) {
var em = matrixMultiply(tm, sm, tmn, m);
var e2t = svgroot.createSVGTransform();
e2t.setMatrix(em);
e2t.setMatrix(matrixMultiply(tm, sm, tmn, m));
childTlist.clear();
childTlist.appendItem(e2t,0);
}
@ -1925,6 +1924,7 @@ function BatchCommand(text) {
// we might be able to simplify
else if (N == 1 && tlist.getItem(0).type == 1 && !angle) {
// Remap all point-based elements
m = transformListToTransform(tlist).matrix;
switch (selected.tagName) {
case 'line':
changes.x1 = selected.getAttribute("x1");