From 8828ed7e2542273da5bbcd4d17c004d7fe7c7375 Mon Sep 17 00:00:00 2001 From: Jonathan Puckey Date: Sat, 26 Feb 2011 01:02:17 +0100 Subject: [PATCH] CompoundPath - check for this.blendMode != 'normal'. --- src/path/CompoundPath.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path/CompoundPath.js b/src/path/CompoundPath.js index e20a262e..1833e942 100644 --- a/src/path/CompoundPath.js +++ b/src/path/CompoundPath.js @@ -23,7 +23,7 @@ CompoundPath = PathItem.extend(new function() { if(!this.visible) return; if (this.children.length) { - if(this.blendMode && !param.ignoreBlendMode) { + if(this.blendMode != 'normal' && !param.ignoreBlendMode) { BlendMode.process(ctx, this, param); } else { var firstChild = this.children[0];