From 7cb72bcd9a3d949f84e088d08035a45866f40077 Mon Sep 17 00:00:00 2001 From: Claus Vium Date: Fri, 2 Apr 2021 20:40:12 +0200 Subject: [PATCH] add 'unknown' as an input command 'unknown' is sent on every click, which spams the console --- src/scripts/inputManager.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scripts/inputManager.js b/src/scripts/inputManager.js index 82e632a28d..55427ece74 100644 --- a/src/scripts/inputManager.js +++ b/src/scripts/inputManager.js @@ -235,7 +235,8 @@ import { appHost } from '../components/apphost'; }, 'repeatone': () => { playbackManager.setRepeatMode('RepeatOne'); - } + }, + 'unknown': () => {} })[command]; const action = keyActions(commandName);