Bug 640882 - Scroll indicators are not visible when the left sidebar is pulled out [r=vingtetun a=blassey]

This commit is contained in:
Mark Finkle 2011-03-11 11:51:02 -05:00
Родитель c5f97c95e0
Коммит 0e2a7297af
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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)";