From 0e2a7297af9c304ba10e65b326493039d0e181c9 Mon Sep 17 00:00:00 2001 From: Mark Finkle Date: Fri, 11 Mar 2011 11:51:02 -0500 Subject: [PATCH] Bug 640882 - Scroll indicators are not visible when the left sidebar is pulled out [r=vingtetun a=blassey] --- mobile/chrome/content/browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/chrome/content/browser.js b/mobile/chrome/content/browser.js index cd1a30f50ab6..d519c5ec30f8 100644 --- a/mobile/chrome/content/browser.js +++ b/mobile/chrome/content/browser.js @@ -1305,7 +1305,7 @@ Browser.MainDragger.prototype = { if (leftSidebar.left > rightSidebar.left) x = Math.round(Math.max(0, rightW * rightVis)); else - x = Math.round(Math.max(0, leftW * leftVis)); + x = Math.round(Math.max(0, leftW * leftVis)) * -1.0; } this._verticalScrollbar.style.MozTransform = "translate(" + x + "px," + y + "px)";