mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-05 20:32:00 -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();
|
this.remove();
|
||||||
return path;
|
return path;
|
||||||
} else {
|
} else {
|
||||||
return reduce.call(this);
|
return reduce.base.call(this);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue