mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -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)
|
if(!this.visible)
|
||||||
return;
|
return;
|
||||||
if (this.children.length) {
|
if (this.children.length) {
|
||||||
if(this.blendMode && !param.ignoreBlendMode) {
|
if(this.blendMode != 'normal' && !param.ignoreBlendMode) {
|
||||||
BlendMode.process(ctx, this, param);
|
BlendMode.process(ctx, this, param);
|
||||||
} else {
|
} else {
|
||||||
var firstChild = this.children[0];
|
var firstChild = this.children[0];
|
||||||
|
|
Loading…
Reference in a new issue