Fix browser hotkeys not working

CTRL+C for copying text
CTRL+F for focusing search box above chat log
CTRL+SHIFT+I for inspector tools
This commit is contained in:
Stubenhocker1399
2019-10-06 14:07:33 +02:00
parent b677f17bc7
commit 8ed9db1334
3 changed files with 15 additions and 3 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ function isKeyEventInvalid(e: KeyboardEvent) {
}
function allowKey(key: number) {
return key === Key.ESCAPE || key === Key.F5 || key === Key.F12 || key === Key.F11 || key === Key.TAB;
return key === Key.ESCAPE || key === Key.F5 || key === Key.F12 || key === Key.F11 || key === Key.TAB || key === Key.KEY_C || key === Key.KEY_I;
}
function fixKeyCode(key: number) {