From 3577111d0b2eaf8908496f23685eb55191bccf4c Mon Sep 17 00:00:00 2001 From: Piro / YUKI Hiroshi Date: Thu, 8 Nov 2012 20:07:03 +0900 Subject: [PATCH] Don't hide closeboxes of other tabs when toolbars are shown/hidden (Update floating tab bar before calling of adjustTabstrip(), because floating tab bar is unexpectedly resized to smallest size on the time) --- modules/browser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/browser.js b/modules/browser.js index 9a540fd2..55bf2904 100644 --- a/modules/browser.js +++ b/modules/browser.js @@ -4447,9 +4447,9 @@ TreeStyleTabBrowser.prototype = { var resizedTopFrame = aEvent.originalTarget.top; if (resizedTopFrame == this.mTabBrowser.contentWindow || resizedTopFrame == this.window) { - this.mTabBrowser.mTabContainer.adjustTabstrip(); - this.updateInvertedTabContentsOrder(true); this.updateFloatingTabbar(this.kTABBAR_UPDATE_BY_WINDOW_RESIZE); + this.updateInvertedTabContentsOrder(true); + this.mTabBrowser.mTabContainer.adjustTabstrip(); } },