You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/KeyboardHandler.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ KeyEvent is a dictionary with the following keys:
38
38
| type | KeyEventType | The type of keyboard event |
39
39
| modifiers | KeyEventFlags | Bit flags describing any pressed modifier keys |
40
40
| windows_key_code | int | The Windows key code for the key event. This value is used by the DOM specification. Sometimes it comes directly from the event (i.e. on Windows) and sometimes it's determined using a mapping function. See "chromium/KeyboardCodes.h" for a list of values. |
41
-
| native_key_code | int | The actual key code genenerated by the platform |
41
+
| native_key_code | int | The actual key code generated by the platform |
42
42
| is_system_key | bool | Indicates whether the event is considered a "system key" event. For Windows see [WM_SYSKEYDOWN](http://msdn.microsoft.com/en-us/library/ms646286.aspx). This value will always be false on non-Windows platforms. |
43
43
| character | wchar_t or unsigned short | The character generated by the keystroke |
44
44
| unmodified_character | wchar_t or unsigned short | Same as 'character' but unmodified by any concurrently-held modifiers (except shift). This is useful for working out shortcut keys. |
0 commit comments