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

Исправлен баг с не обновлением интерфейса для горячих клавиш Ctrl+Shift+End/Home (баг 31277).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@67996 954022d7-b5bf-4e40-9824-e11837661b57
parent e0c41216
......@@ -10651,6 +10651,9 @@ CDocument.prototype =
this.Cursor_MoveEndOfLine( true === e.ShiftKey );
}
this.Document_UpdateInterfaceState();
this.Document_UpdateRulersState();
bRetValue = keydownresult_PreventAll;
}
else if ( e.KeyCode == 36 ) // клавиша Home
......@@ -10664,6 +10667,9 @@ CDocument.prototype =
this.Cursor_MoveStartOfLine( true === e.ShiftKey );
}
this.Document_UpdateInterfaceState();
this.Document_UpdateRulersState();
bRetValue = keydownresult_PreventAll;
}
else if ( e.KeyCode == 37 ) // Left Arrow
......
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