[DE PE SSE] Fix bug 55173

This commit is contained in:
JuliaSvinareva 2022-02-02 16:37:30 +03:00
parent 7a88124070
commit f8e430f3a7

View file

@ -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();
} }
}); });