From 09ec03058ef11550d20ef66a285df6fcb82fc3c1 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sun, 1 Jun 2014 23:56:32 -0500 Subject: [PATCH] fix typo in shrink calculation. --- lib/widget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widget.js b/lib/widget.js index e9d681d..e60e8a0 100644 --- a/lib/widget.js +++ b/lib/widget.js @@ -2804,7 +2804,7 @@ Element.prototype._getShrinkBox = function(xi, xl, yi, yl, get) { if (this.screen.autoPadding) { // Maybe just do this no matter what. ret.xl += this.ileft; - ret.xi += this.left; + ret.xi += this.ileft; } } if (el.position.top == null && el.position.bottom != null) {