mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-29 09:22:22 -05:00
CompoundPath - check for this.blendMode != 'normal'.
This commit is contained in:
parent
bebc8bc8cc
commit
8828ed7e25
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue