From d980f95fec5f86454247389b5137067faa770fd1 Mon Sep 17 00:00:00 2001 From: piro Date: Mon, 10 Mar 2008 05:21:14 +0000 Subject: [PATCH] =?UTF-8?q?Firefox=203=E3=81=A7=E3=82=BF=E3=83=96=E3=83=90?= =?UTF-8?q?=E3=83=BC=E3=81=AE=E5=B9=85=E3=81=8C=E5=BC=B7=E5=88=B6=E7=9A=84?= =?UTF-8?q?=E3=81=AB300=E3=83=94=E3=82=AF=E3=82=BB=E3=83=AB=E4=BB=A5?= =?UTF-8?q?=E4=B8=8A=E3=81=AB=E3=81=AA=E3=82=8B=E5=95=8F=E9=A1=8C=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= 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@2051 599a83e7-65a4-db11-8015-0010dcdd6dc2 --- content/treestyletab/treestyletabbrowser.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/treestyletab/treestyletabbrowser.js b/content/treestyletab/treestyletabbrowser.js index 6842e735..e464b127 100644 --- a/content/treestyletab/treestyletabbrowser.js +++ b/content/treestyletab/treestyletabbrowser.js @@ -2732,7 +2732,7 @@ TreeStyleTabBrowser.prototype = { this.redrawContentArea(); window.setTimeout(function(aSelf) { if (!aSelf.isGecko18 && aSelf.tabbarShown) { - b.setAttribute(this.kAUTOHIDE, 'show'); + b.setAttribute(aSelf.kAUTOHIDE, 'show'); aSelf.redrawContentArea(); } aSelf.checkTabsIndentOverflow(); @@ -2813,6 +2813,7 @@ TreeStyleTabBrowser.prototype = { this.tabbarCanvas.style.margin = (yOffset || 0)+'px 0 0 '+(xOffset || 0)+'px'; this.tabbarCanvas.style.width = (this.tabbarCanvas.width = w)+'px'; this.tabbarCanvas.style.height = (this.tabbarCanvas.height = h)+'px'; + this.tabbarCanvas.style.visibilit = 'visible'; var ctx = this.tabbarCanvas.getContext('2d'); ctx.clearRect(0, 0, w, h); ctx.save(); @@ -2829,6 +2830,7 @@ TreeStyleTabBrowser.prototype = { this.tabbarCanvas.style.height = this.tabbarCanvas.width = this.tabbarCanvas.height = 0; + this.tabbarCanvas.style.visibilit = 'collapse'; }, updateTabbarTransparency : function()