From 1b50b890c40872dc7bea24b09c86bea5f56ed602 Mon Sep 17 00:00:00 2001 From: Piro / SHIMODA Hiroshi Date: Tue, 3 Jan 2012 06:00:04 +0900 Subject: [PATCH] tab bar should not be hidden by keyboard input if it is expanded by mouse --- modules/autoHide.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/autoHide.js b/modules/autoHide.js index a3c1cd9a..c6b81da7 100644 --- a/modules/autoHide.js +++ b/modules/autoHide.js @@ -1495,7 +1495,8 @@ AutoHideBrowser.prototype = { } } else { - if (this.enabled) + if (this.enabled && + this.showHideReason == this.kSHOWN_BY_SHORTCUT) this.hide(); } },