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

Unified Diff: ui/base/keycodes/keyboard_code_conversion_gtk.cc

Issue 6245003: Views-implementation of AutocompleteEditView (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 years, 11 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
Index: ui/base/keycodes/keyboard_code_conversion_gtk.cc
diff --git a/ui/base/keycodes/keyboard_code_conversion_gtk.cc b/ui/base/keycodes/keyboard_code_conversion_gtk.cc
index f2e65a55e989524b24f59c6fc9f2f18665cd03f7..6545d7ea0c3a07756bf120bd4c783599e7d4db53 100644
--- a/ui/base/keycodes/keyboard_code_conversion_gtk.cc
+++ b/ui/base/keycodes/keyboard_code_conversion_gtk.cc
@@ -149,6 +149,7 @@ KeyboardCode WindowsKeyCodeForGdkKeyCode(int keycode) {
case GDK_Insert:
return VKEY_INSERT; // (2D) INS key
case GDK_Delete:
+ case GDK_KP_Delete:
Peter Kasting 2011/01/20 19:44:37 There are lots of other GDK_KP_xxx codes too (I fo
oshima 2011/01/20 21:35:48 OK I'll investigate and address them in separate C
return VKEY_DELETE; // (2E) DEL key
case GDK_Help:
return VKEY_HELP; // (2F) HELP key

Powered by Google App Engine
This is Rietveld 408576698