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