chat: Fix blur and focus in Alt-C shortcut handler
parent
59848efc9b
commit
92cd1feb8a
|
@ -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' &&
|
||||
|
|
Loading…
Reference in New Issue