mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-29 09:22:22 -05:00
Fix PlacedSymbol#transformContent.
This commit is contained in:
parent
22bccf3a31
commit
422b8911b8
1 changed files with 3 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue