mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-22 07:19:57 -05:00
Fix PlacedSymbol#clone().
This commit is contained in:
parent
64a142436b
commit
fc3833f150
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ var PlacedSymbol = this.PlacedSymbol = Item.extend({
|
|||
},
|
||||
|
||||
clone: function() {
|
||||
return this._clone(new PlacedSymbol(symbol, this.matrix.clone()));
|
||||
return this._clone(new PlacedSymbol(this.symbol, this.matrix.clone()));
|
||||
},
|
||||
|
||||
_transform: function(matrix, flags) {
|
||||
|
|
Loading…
Reference in a new issue