From 5d4d478802516fe99cd3a76bc72e73f92d2fb651 Mon Sep 17 00:00:00 2001 From: Piro / SHIMODA Hiroshi Date: Mon, 10 Jan 2011 01:43:23 +0900 Subject: [PATCH] on Minefield, the tab bar was not shown by keyboard shortcuts if "TreeStyleTabService.shouldListenKeyEventsForAutoExpandByFocusChange" returned "false". --- modules/autoHide.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/autoHide.js b/modules/autoHide.js index f235f7b1..017e3f7f 100644 --- a/modules/autoHide.js +++ b/modules/autoHide.js @@ -306,6 +306,12 @@ AutoHideBrowser.prototype = { this.treeStyleTab.getTreePref('tabbar.autoShow.feedback'); }, + get shouldListenKeyEventsForAutoHide() + { + return this.treeStyleTab.getTreePref('tabbar.autoShow.accelKeyDown') || + this.treeStyleTab.getTreePref('tabbar.autoShow.tabSwitch'); + }, + showHideOnMousemove : function AHB_showHideOnMousemove(aEvent) { var w = this.window;