fixed up group drag and drop

This commit is contained in:
Eric Rowell
2012-12-31 01:47:49 -08:00
parent 83bf1740a6
commit 206f7bf8d0
4 changed files with 10 additions and 14 deletions

View File

@@ -195,10 +195,10 @@
},
_applyAncestorTransforms: function(node) {
var context = this.context;
node.eachAncestorReverse(function(no) {
node._eachAncestorReverse(function(no) {
var t = no.getTransform(), m = t.getMatrix();
context.transform(m[0], m[1], m[2], m[3], m[4], m[5]);
});
}, true);
}
};