[DE PE SSE] Fix bug 55173
This commit is contained in:
parent
7a88124070
commit
f8e430f3a7
|
@ -592,9 +592,8 @@ Common.UI.HintManager = new(function() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var isAlt = e.altKey;
|
_needShow = (e.keyCode == Common.UI.Keys.ALT && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0);
|
||||||
_needShow = (isAlt && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0);
|
if (e.altKey && e.keyCode !== 115) {
|
||||||
if (isAlt && e.keyCode !== 115) {
|
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue