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

Исправлен баг с неперсчитыванием документа после удаления плавающей картинки в...

Исправлен баг с неперсчитыванием документа после удаления плавающей картинки в колонтитуле (баг 19810).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49801 954022d7-b5bf-4e40-9824-e11837661b57
parent d755b9e6
......@@ -9698,8 +9698,13 @@ Paragraph.prototype =
{
for ( var Index = 0; Index < this.Content.length; Index++ )
{
if ( para_Drawing === this.Content[Index].Type && Id === this.Content[Index].Get_Id() )
var Item = this.Content[Index];
if ( para_Drawing === Item.Type && Id === Item.Get_Id() )
{
var HdrFtr = this.Parent.Is_HdrFtr(true);
if ( null != HdrFtr && true != Item.Is_Inline() )
HdrFtr.RecalcInfo.NeedRecalc = true;
this.Internal_Content_Remove( Index );
return Index;
}
......
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