diff --git a/Source/OpenTK/Input/Key.cs b/Source/OpenTK/Input/Key.cs index 5933b483..3402c30f 100644 --- a/Source/OpenTK/Input/Key.cs +++ b/Source/OpenTK/Input/Key.cs @@ -261,6 +261,8 @@ namespace OpenTK.Input KeypadPlus = KeypadAdd, /// The keypad decimal key. KeypadDecimal, + /// The keypad period key (equivalent to KeypadDecimal). + KeypadPeriod = KeypadDecimal, /// The keypad enter key. KeypadEnter, @@ -343,6 +345,8 @@ namespace OpenTK.Input // Symbols /// The tilde key. Tilde, + /// The grave key (equivaent to Tilde). + Grave = Tilde, /// The minus key. Minus, //Equal, @@ -368,6 +372,8 @@ namespace OpenTK.Input Slash, /// The backslash key. BackSlash, + /// The secondary backslash key. + NonUSBackSlash, /// Indicates the last available keyboard key. LastKey }