Commit 58c0dd17 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с обработкой клавиши Num"-" (баг 31661)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68383 954022d7-b5bf-4e40-9824-e11837661b57
parent 7f7bf38c
......@@ -11183,7 +11183,7 @@ CDocument.prototype =
}
else if ( e.KeyCode == 189 && false === editor.isViewMode ) // Клавиша Num-
{
if (false === this.Document_Is_SelectionLocked(changestype_Paragraph_Content) && true === e.CtrlKey && true === e.ShiftKey)
if (true === e.CtrlKey && true === e.ShiftKey && false === this.Document_Is_SelectionLocked(changestype_Paragraph_Content, null, true))
{
this.Create_NewHistoryPoint(historydescription_Document_MinusButton);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment