From b94099f90cb7eb6deea67ef394c90b39cea2590b Mon Sep 17 00:00:00 2001 From: "gavin%gavinsharp.com" Date: Fri, 19 Jan 2007 04:29:19 +0000 Subject: [PATCH] =?UTF-8?q?Bug=20366084:=20Don't=20let=20numeric=20accessk?= =?UTF-8?q?eys=20conflict=20with=20tab=20switching,=20patch=20by=20Simon?= =?UTF-8?q?=20B=C3=BCnzli=20,=20r=3Dmats.palmgren,=20ui-?= =?UTF-8?q?r=3Dbeltzner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://10.0.0.236/trunk@218658 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/browser/base/content/browser.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mozilla/browser/base/content/browser.js b/mozilla/browser/base/content/browser.js index ae81c3438e1..ed94792b243 100644 --- a/mozilla/browser/base/content/browser.js +++ b/mozilla/browser/base/content/browser.js @@ -1382,7 +1382,8 @@ function ctrlNumberTabSelection(event) if (!event.metaKey) #else #ifdef XP_UNIX - if (!event.altKey) + // don't let tab selection clash with numeric accesskeys (bug 366084) + if (!event.altKey || event.shiftKey) #else if (!event.ctrlKey) #endif