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

Исправлен баг с рассчетом pageBreak в последнем параграфе документа (баг 31278).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@67995 954022d7-b5bf-4e40-9824-e11837661b57
parent 055b6ff1
......@@ -1023,6 +1023,10 @@ Paragraph.prototype =
Check_BreakPageEnd : function(Item)
{
// Последний параграф с разрывом страницы не проверяем. Так делает Word.
if (null === this.Get_DocumentNext())
return false;
var PBChecker = new CParagraphCheckPageBreakEnd( Item );
var ContentLen = this.Content.length;
......
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