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

Исправлен баг с выделением таблицы в автофигурах (баг 21758).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51194 954022d7-b5bf-4e40-9824-e11837661b57
parent 6c2da4df
......@@ -458,7 +458,11 @@ WordShape.prototype =
var hdr_ftr = doc_content.Is_HdrFtr(true);
if(!isRealObject(hdr_ftr))
{
editor.WordControl.m_oLogicDocument.CurPos.Type = docpostype_DrawingObjects;
var LogicDocument = editor.WordControl.m_oLogicDocument;
LogicDocument.CurPos.Type = docpostype_DrawingObjects;
LogicDocument.Document_UpdateInterfaceState();
LogicDocument.Document_UpdateRulersState();
LogicDocument.Document_UpdateSelectionState();
}
else
{
......
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