Merge pull request #1530 from ONLYOFFICE/fix/fix-bugs
[DE PE SSE] Fix bug 55173
This commit is contained in:
commit
4f4c02aefa
|
@ -592,9 +592,8 @@ Common.UI.HintManager = new(function() {
|
|||
}
|
||||
}
|
||||
|
||||
var isAlt = e.altKey;
|
||||
_needShow = (isAlt && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0);
|
||||
if (isAlt && e.keyCode !== 115) {
|
||||
_needShow = (e.keyCode == Common.UI.Keys.ALT && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0);
|
||||
if (e.altKey && e.keyCode !== 115) {
|
||||
e.preventDefault();
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue