fix typo in shrink calculation.

This commit is contained in:
Christopher Jeffrey 2014-06-01 23:56:32 -05:00
parent 8f6381ddf5
commit 09ec03058e
1 changed files with 1 additions and 1 deletions

View File

@ -2804,7 +2804,7 @@ Element.prototype._getShrinkBox = function(xi, xl, yi, yl, get) {
if (this.screen.autoPadding) { if (this.screen.autoPadding) {
// Maybe just do this no matter what. // Maybe just do this no matter what.
ret.xl += this.ileft; ret.xl += this.ileft;
ret.xi += this.left; ret.xi += this.ileft;
} }
} }
if (el.position.top == null && el.position.bottom != null) { if (el.position.top == null && el.position.bottom != null) {