chat: Fix blur and focus in Alt-C shortcut handler

rhansen-chat
Richard Hansen 2021-12-05 21:54:06 -05:00
parent 59848efc9b
commit 92cd1feb8a
1 changed files with 2 additions and 2 deletions

View File

@ -2589,9 +2589,9 @@ function Ace2Inner(editorInfo, cssManagers) {
altKey && keyCode === 67 &&
padShortcutEnabled.altC) {
// Alt c focuses on the Chat window
$(this).blur();
evt.target.blur();
parent.parent.chat.show();
parent.parent.$('#chatinput').focus();
parent.parent.chat.focus();
evt.preventDefault();
}
if (!specialHandled && type === 'keydown' &&