From 5ba251964ad52eaad263514be08870f10e9a2927 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Fri, 18 Feb 2022 11:37:15 +0300 Subject: [PATCH] [DE PE SSE] Fix hint manager --- apps/common/main/lib/controller/HintManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js index 516ce3f01..ee2dd42f2 100644 --- a/apps/common/main/lib/controller/HintManager.js +++ b/apps/common/main/lib/controller/HintManager.js @@ -592,7 +592,7 @@ Common.UI.HintManager = new(function() { } } - _needShow = (e.keyCode == Common.UI.Keys.ALT && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0); + _needShow = (!e.shiftKey && e.keyCode == Common.UI.Keys.ALT && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0); if (e.altKey && e.keyCode !== 115) { e.preventDefault(); }