[DE PE SSE] Fix bug 53880
This commit is contained in:
parent
7257bca7b6
commit
5f2d964632
|
@ -426,6 +426,7 @@ Common.UI.HintManager = new(function() {
|
||||||
if (_hintVisible) {
|
if (_hintVisible) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
if (e.keyCode == Common.UI.Keys.ESC ) {
|
if (e.keyCode == Common.UI.Keys.ESC ) {
|
||||||
|
setTimeout(function () {
|
||||||
if (_currentLevel === 0) {
|
if (_currentLevel === 0) {
|
||||||
_hideHints();
|
_hideHints();
|
||||||
_lockedKeyEvents(false);
|
_lockedKeyEvents(false);
|
||||||
|
@ -434,6 +435,7 @@ Common.UI.HintManager = new(function() {
|
||||||
_setCurrentSection('esc');
|
_setCurrentSection('esc');
|
||||||
_showHints();
|
_showHints();
|
||||||
}
|
}
|
||||||
|
}, 10);
|
||||||
} else {
|
} else {
|
||||||
var curLetter = null;
|
var curLetter = null;
|
||||||
var keyCode = e.keyCode;
|
var keyCode = e.keyCode;
|
||||||
|
|
Loading…
Reference in a new issue