From 30e248bf18a0df93546bf6a0b6be7f1c023bad67 Mon Sep 17 00:00:00 2001 From: Stefan Kienzle Date: Mon, 20 Oct 2014 15:49:29 +0200 Subject: [PATCH] Fix opacity for fabric.Text and fabric.IText --- src/shapes/text.class.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shapes/text.class.js b/src/shapes/text.class.js index 0f89d1a3..1ebfae1b 100644 --- a/src/shapes/text.class.js +++ b/src/shapes/text.class.js @@ -391,6 +391,7 @@ */ _renderText: function(ctx, textLines) { ctx.save(); + this._setOpacity(ctx); this._setShadow(ctx); this._setupCompositeOperation(ctx); this._renderTextFill(ctx, textLines);