From 78e4ea55260891f7dbe345f161f802cedc5d6993 Mon Sep 17 00:00:00 2001 From: Piro / YUKI Hiroshi Date: Wed, 30 Oct 2013 04:30:08 +0900 Subject: [PATCH] Don't cancel the timer to hide (or collapse) the tab bar after a tab is opened or closed (#581, regression) --- modules/autoHide.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/autoHide.js b/modules/autoHide.js index 037902fe..4d5bf140 100644 --- a/modules/autoHide.js +++ b/modules/autoHide.js @@ -362,7 +362,6 @@ AutoHideBrowser.prototype = { if (shouldShow) { this.show(this.kSHOWN_BY_MOUSEMOVE); this.cancelDelayedShowForShortcut(); - this.cancelHideForFeedback(); } else if ( !shouldShow && @@ -382,7 +381,6 @@ AutoHideBrowser.prototype = { this.showHideOnMouseMoveTimer = w.setTimeout( function(aSelf) { aSelf.cancelDelayedShowForShortcut(); - aSelf.cancelHideForFeedback(); aSelf.show(aSelf.kSHOWN_BY_MOUSEMOVE); }, utils.getTreePref('tabbar.autoHide.delay'),