From ec0b1dec1d67c798b3dea03ccd34558b7c60f768 Mon Sep 17 00:00:00 2001 From: Jonathan Puckey Date: Fri, 25 Feb 2011 13:13:46 +0100 Subject: [PATCH] PlacedSymbol: add missing param object to PlacedSymbol#definition#draw call. --- src/item/PlacedSymbol.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/item/PlacedSymbol.js b/src/item/PlacedSymbol.js index 92fc022c..acc49f2c 100644 --- a/src/item/PlacedSymbol.js +++ b/src/item/PlacedSymbol.js @@ -46,7 +46,7 @@ PlacedSymbol = Item.extend({ // TODO: we need to preserve strokewidth, but still transform the fill ctx.save(); this.matrix.applyToContext(ctx); - this.symbol.definition.draw(ctx); + this.symbol.definition.draw(ctx, param); ctx.restore(); } }