Skip to content

Commit

Permalink
Fix internalBounds regression caused by 1ac8e46
Browse files Browse the repository at this point in the history
  • Loading branch information
lehni committed Feb 3, 2016
1 parent 336460b commit 0152439
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/path/Path.js
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 0152439

Please sign in to comment.