Chromium Code Reviews| 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 |