Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2758)

Unified Diff: chrome/browser/gtk/browser_window_gtk.cc

Issue 62105: Fix a NOTREACHED in GTK accelerator handling when capslock is on. (Closed)
Patch Set: Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/browser_window_gtk.cc
diff --git a/chrome/browser/gtk/browser_window_gtk.cc b/chrome/browser/gtk/browser_window_gtk.cc
index b1f3f87c4eca5f657e3af9381b80154264080040..cd7c805bc20eee446aff02c97e8414ffdc8adf79 100644
--- a/chrome/browser/gtk/browser_window_gtk.cc
+++ b/chrome/browser/gtk/browser_window_gtk.cc
@@ -111,6 +111,8 @@ const struct AcceleratorMapping {
};
int GetCommandFromKeyval(guint accel_key) {
+ // Bug 9806: If capslock is on, we will get a capital letter as accel_key.
+ accel_key = gdk_keyval_to_lower(accel_key);
for (size_t i = 0; i < arraysize(kAcceleratorMap); ++i) {
if (kAcceleratorMap[i].keyval == accel_key)
return kAcceleratorMap[i].command_id;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698