mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Fix endless recursion in CompoundPath#reduce()
This commit is contained in:
parent
5e654ca64e
commit
98686ef888
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ var CompoundPath = PathItem.extend(/** @lends CompoundPath# */{
|
|||
this.remove();
|
||||
return path;
|
||||
} else {
|
||||
return reduce.call(this);
|
||||
return reduce.base.call(this);
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue