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
@@ -281,6 +281,9 @@ export class ChatLog implements AfterViewInit, OnDestroy, DoCheck {
updateEntityId(this.party, update.old, update.new);
updateEntityId(this.whisper, update.old, update.new);
}),
this.game.onSearch.subscribe(() => {
this.focus();
}),
);
}
get linesElement() {
@@ -457,7 +460,6 @@ export class ChatLog implements AfterViewInit, OnDestroy, DoCheck {
let value = this.filterInput.nativeElement.value;
if (!value) {
this.clearTimeOutAutoClear();
this.unFocus();
this.filterChatLogLines('', false);
return;
} else {