mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-19 06:00:56 -05:00
Fix internalBounds regression caused by 1ac8e46d55
This commit is contained in:
parent
336460b51f
commit
0152439627
1 changed files with 2 additions and 3 deletions
|
@ -2644,9 +2644,8 @@ new function() { // PostScript-style drawing commands
|
|||
// Curve. But not all of them use all these parameters, and some define
|
||||
// additional ones after.
|
||||
|
||||
_getBounds: function(getter, matrix, cacheItem, internal) {
|
||||
return Path[getter](this._segments, this._closed, this, matrix,
|
||||
internal);
|
||||
_getBounds: function(getter, matrix) {
|
||||
return Path[getter](this._segments, this._closed, this, matrix);
|
||||
},
|
||||
|
||||
// Mess with indentation in order to get more line-space below:
|
||||
|
|
Loading…
Reference in a new issue