[DE PE SSE] Fix bug 53880

This commit is contained in:
JuliaSvinareva 2021-11-19 16:45:26 +03:00
parent 7257bca7b6
commit 5f2d964632

View file

@ -426,6 +426,7 @@ Common.UI.HintManager = new(function() {
if (_hintVisible) {
e.preventDefault();
if (e.keyCode == Common.UI.Keys.ESC ) {
setTimeout(function () {
if (_currentLevel === 0) {
_hideHints();
_lockedKeyEvents(false);
@ -434,6 +435,7 @@ Common.UI.HintManager = new(function() {
_setCurrentSection('esc');
_showHints();
}
}, 10);
} else {
var curLetter = null;
var keyCode = e.keyCode;