From 31094094f9f658fa40871a8cec450ae8033d4c7b Mon Sep 17 00:00:00 2001 From: piro Date: Fri, 2 Jul 2010 09:38:33 +0000 Subject: [PATCH] =?UTF-8?q?Minefield=204.0b2pre=E3=81=A7=E3=82=BF=E3=83=96?= =?UTF-8?q?=E3=83=90=E3=83=BC=E3=81=AE=E4=BD=8D=E7=BD=AE=E3=81=8C=E3=81=9A?= =?UTF-8?q?=E3=82=8C=E3=81=A6=E3=81=84=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@6809 599a83e7-65a4-db11-8015-0010dcdd6dc2 --- content/treestyletab/treestyletabbrowser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/treestyletab/treestyletabbrowser.js b/content/treestyletab/treestyletabbrowser.js index a658e2e7..b60b75e7 100644 --- a/content/treestyletab/treestyletabbrowser.js +++ b/content/treestyletab/treestyletabbrowser.js @@ -1311,8 +1311,8 @@ TreeStyleTabBrowser.prototype = { let box = this._tabStripPlaceHolder.boxObject; let root = document.documentElement.boxObject; - strip.style.top = (box.screenY - root.screenY)+'px'; - strip.style.left = (box.screenX - root.screenX)+'px'; + strip.style.top = (box.screenY - root.screenY + root.y)+'px'; + strip.style.left = (box.screenX - root.screenX + root.x)+'px'; let width = parseInt(this._tabStripPlaceHolder.getAttribute('width') || box.width); let height = parseInt(this._tabStripPlaceHolder.getAttribute('height') || box.height);