From 504d02420f74e8a148d40747844ecbf47a7d2b09 Mon Sep 17 00:00:00 2001 From: "masayuki%d-toybox.com" Date: Thu, 17 Apr 2008 14:40:06 +0000 Subject: [PATCH] Bug 429160 [Mac]Regression: Command-Option-F does not select search box (not fixed by this patch) / Bug 429291 Hotkeys (Ctrl-F, Ctrl-C, Ctrl-V, etc.) broken in Russian locale (most likely after bug 359638 landed) (fixed by this patch) r+sr=roc, a=beltzner git-svn-id: svn://10.0.0.236/trunk@250370 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/content/base/src/nsContentUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/content/base/src/nsContentUtils.cpp b/mozilla/content/base/src/nsContentUtils.cpp index aeec6c15c8a..e81c2cac9e8 100644 --- a/mozilla/content/base/src/nsContentUtils.cpp +++ b/mozilla/content/base/src/nsContentUtils.cpp @@ -4035,7 +4035,7 @@ nsContentUtils::GetAccelKeyCandidates(nsIDOMEvent* aDOMEvent, for (PRUint32 i = 0; i < nativeKeyEvent->alternativeCharCodes.Length(); ++i) { PRUint32 ch = - nativeKeyEvent->alternativeCharCodes[0].mUnshiftedCharCode; + nativeKeyEvent->alternativeCharCodes[i].mUnshiftedCharCode; if (!ch || ch == nativeKeyEvent->charCode) continue;