10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
F13-F24 keys not fully mapped
in constants.cs line 11 need to change to: public static readonly TnKey[] FunctionKeys = new TnKey[] { TnKey.F1, TnKey.F2, TnKey.F3, TnKey.F4, TnKey.F5, TnKey.F6, TnKey.F7, TnKey.F8, TnKey.F9, TnKey.F10, TnKey.F11, TnKey.F12, TnKey.F13, TnKey.F14, TnKey.F15, TnKey.F16, TnKey.F17, TnKey.F18, TnKey.F19, TnKey.F20, TnKey.F21, TnKey.F22, TnKey.F23, TnKey.F24 };
in constants.cs around line 308 need to add: FunctionKeyIntLUT.Add(TnKey.F14, 14); FunctionKeyIntLUT.Add(TnKey.F15, 15); FunctionKeyIntLUT.Add(TnKey.F16, 16); FunctionKeyIntLUT.Add(TnKey.F17, 17); FunctionKeyIntLUT.Add(TnKey.F18, 18); FunctionKeyIntLUT.Add(TnKey.F19, 19); FunctionKeyIntLUT.Add(TnKey.F20, 20); FunctionKeyIntLUT.Add(TnKey.F21, 21); FunctionKeyIntLUT.Add(TnKey.F22, 22); FunctionKeyIntLUT.Add(TnKey.F23, 23); FunctionKeyIntLUT.Add(TnKey.F24, 24);
The text was updated successfully, but these errors were encountered:
Kindly submit a PR.
Sorry, something went wrong.
PR submitted
No branches or pull requests
F13-F24 keys not fully mapped
in constants.cs line 11 need to change to:
public static readonly TnKey[] FunctionKeys = new TnKey[] { TnKey.F1, TnKey.F2, TnKey.F3, TnKey.F4, TnKey.F5, TnKey.F6, TnKey.F7, TnKey.F8, TnKey.F9, TnKey.F10, TnKey.F11, TnKey.F12, TnKey.F13, TnKey.F14, TnKey.F15, TnKey.F16, TnKey.F17, TnKey.F18, TnKey.F19, TnKey.F20, TnKey.F21, TnKey.F22, TnKey.F23, TnKey.F24 };
in constants.cs around line 308 need to add:
FunctionKeyIntLUT.Add(TnKey.F14, 14);
FunctionKeyIntLUT.Add(TnKey.F15, 15);
FunctionKeyIntLUT.Add(TnKey.F16, 16);
FunctionKeyIntLUT.Add(TnKey.F17, 17);
FunctionKeyIntLUT.Add(TnKey.F18, 18);
FunctionKeyIntLUT.Add(TnKey.F19, 19);
FunctionKeyIntLUT.Add(TnKey.F20, 20);
FunctionKeyIntLUT.Add(TnKey.F21, 21);
FunctionKeyIntLUT.Add(TnKey.F22, 22);
FunctionKeyIntLUT.Add(TnKey.F23, 23);
FunctionKeyIntLUT.Add(TnKey.F24, 24);
The text was updated successfully, but these errors were encountered: