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

Исправлен баг с неправильным пересчетом документа, если изменялся параграф,...

Исправлен баг с неправильным пересчетом документа, если изменялся параграф, перед которым идет параграф с настройкой "Не отрывать от следующего" (баг 21608).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51130 954022d7-b5bf-4e40-9824-e11837661b57
parent aab96bdb
...@@ -12472,6 +12472,10 @@ Paragraph.prototype = ...@@ -12472,6 +12472,10 @@ Paragraph.prototype =
if ( true === bNeedRecalc ) if ( true === bNeedRecalc )
{ {
var Prev = this.Get_DocumentPrev();
if ( 0 === CurPage && null != Prev && type_Paragraph === Prev.GetType() && true === Prev.Get_CompiledPr2(false).ParaPr.KeepNext )
Prev.Refresh_RecalcData2( Prev.Pages.length - 1 );
// Сообщаем родительскому классу, что изменения произошли в элементе с номером this.Index и на странице this.PageNum // Сообщаем родительскому классу, что изменения произошли в элементе с номером this.Index и на странице this.PageNum
return this.Refresh_RecalcData2(CurPage); return this.Refresh_RecalcData2(CurPage);
} }
......
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