Fix PlacedSymbol#transformContent.

This commit is contained in:
Jonathan Puckey 2011-02-26 13:14:58 +01:00
parent 22bccf3a31
commit 422b8911b8

View file

@ -19,7 +19,10 @@ PlacedSymbol = Item.extend({
} else {
this.matrix = new Matrix();
}
// TODO: this should use strokeBounds:
this._bounds = this.symbol.definition.bounds.clone();
// TODO: should size be cached here, or on Symbol?
this._size = this._bounds.size;
},
transformContent: function(matrix, flags) {