mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
No need to call #getDefinition() internally.
Use private value directly.
This commit is contained in:
parent
9e5eb17264
commit
d2b1c77686
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ var PlacedSymbol = this.PlacedSymbol = PlacedItem.extend(/** @lends PlacedSymbol
|
|||
Item.drawSelectedBounds(this.symbol._definition.getBounds(), ctx,
|
||||
this._matrix);
|
||||
} else {
|
||||
Item.draw(this.symbol.getDefinition(), ctx, param);
|
||||
Item.draw(this.symbol._definition, ctx, param);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue