From c35e56f87bcfc22348a6ede5c746159510081ed8 Mon Sep 17 00:00:00 2001 From: SHIMODA Hiroshi Date: Tue, 17 Apr 2012 15:05:10 +0900 Subject: [PATCH] Enlarge max width of the status panel (update for changes introduced on https://bugzilla.mozilla.org/show_bug.cgi?id=632634) --- modules/browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/browser.js b/modules/browser.js index fe72282d..bdbca5fd 100644 --- a/modules/browser.js +++ b/modules/browser.js @@ -1724,7 +1724,7 @@ TreeStyleTabBrowser.prototype = { statusPanelStyle.marginLeft = (contentBox.screenX - offsetParentBox.screenX + chromeMargins[3])+'px'; statusPanelStyle.marginRight = ((offsetParentBox.screenX + offsetParentBox.width) - (contentBox.screenX + contentBox.width) + chromeMargins[1])+'px'; statusPanelStyle.maxWidth = this.isVertical ? - parseInt(contentBox.width / 2)+'px' : + (contentBox.width-5)+'px' : // emulate the margin defined on https://bugzilla.mozilla.org/show_bug.cgi?id=632634 '' ; statusPanel.__treestyletab__repositioned = true; }