Fix PlacedSymbol#clone().

This commit is contained in:
Jonathan Puckey 2011-05-20 19:41:53 +02:00
parent 64a142436b
commit fc3833f150

View file

@ -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) {