From 9e2ee8129a42afa01b92c81247820781f01be769 Mon Sep 17 00:00:00 2001 From: Horatiu Muresan Date: Tue, 7 Feb 2023 16:26:42 +0200 Subject: [PATCH] fix(remote-control) Add some missing key codes for numpad --- react/features/remote-control/keycodes.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/react/features/remote-control/keycodes.ts b/react/features/remote-control/keycodes.ts index fb02638c5..c3851a5d6 100644 --- a/react/features/remote-control/keycodes.ts +++ b/react/features/remote-control/keycodes.ts @@ -67,7 +67,9 @@ export const KEYS = { BACKSLASH: '\\', MINUS: '-', EQUAL: '=', - SLASH: '/' + SLASH: '/', + ASTERISK: '*', + PLUS: '+' }; /* eslint-disable max-len */ @@ -114,6 +116,11 @@ const keyCodeToKey = { 103: KEYS.NUMPAD_7, 104: KEYS.NUMPAD_8, 105: KEYS.NUMPAD_9, + 106: KEYS.ASTERISK, + 107: KEYS.PLUS, + 109: KEYS.MINUS, + 110: KEYS.PERIOD, + 111: KEYS.SLASH, 112: KEYS.F1, 113: KEYS.F2, 114: KEYS.F3,