From fef78152e1a99c6cbbeae6eb182adbc6fff77da8 Mon Sep 17 00:00:00 2001 From: Horatiu Muresan <39557534+horymury@users.noreply.github.com> Date: Tue, 7 Feb 2023 17:00:59 +0200 Subject: [PATCH] fix(remote-control) Add some missing key codes for numpad (#12879) --- 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 fb02638c59..c3851a5d65 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,