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

Исправлен баг с пересчетом текстовых настроек рана, при объединении параграфов...

Исправлен баг с пересчетом текстовых настроек рана, при объединении параграфов и пересылке тих изменений (баг 26998).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59085 954022d7-b5bf-4e40-9824-e11837661b57
parent c2255a98
......@@ -554,6 +554,8 @@ Paragraph.prototype =
for ( var CurPos = StartPos; CurPos < this.Content.length; CurPos++ )
{
this.Content[CurPos].Set_Paragraph( this );
if (this.Content[CurPos].Recalc_RunsCompiledPr)
this.Content[CurPos].Recalc_RunsCompiledPr();
}
// Обновлять позиции в NearestPos не надо, потому что мы добавляем новые элементы в конец массива
......@@ -10922,6 +10924,9 @@ Paragraph.prototype =
}
this.Content.splice( Pos, 0, Element );
if (Element.Recalc_RunsCompiledPr)
Element.Recalc_RunsCompiledPr();
}
}
......
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