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

Bug #32095 Исправлен баг с падением при пересчете таблицы. Исправлен баг с...

Bug #32095 Исправлен баг с падением при пересчете таблицы. Исправлен баг с пересчетом таблицы, у которой первая строка с высотой больше высоты страницы. Исправлен баг с зависанием из-за трека таблиц.
parent 6af95cde
......@@ -381,6 +381,7 @@ Paragraph.prototype.Prepare_RecalculateObject = function()
Paragraph.prototype.Start_FromNewPage = function()
{
this.Pages.length = 1;
this.Pages[0] = new CParaPage(this.X, this.Y, this.XLimit, this.YLimit, 0);
// Добавляем разрыв страницы
this.Pages[0].Set_EndLine(-1);
......
......@@ -3262,6 +3262,8 @@ CTable.prototype =
{
if (true != this.Is_EmptyPage(CurPage))
break;
CurPage++;
}
this.private_StartTrackTable(CurPage);
......
......@@ -2314,7 +2314,7 @@ CTable.prototype.private_RecalculatePage = function(CurPage)
// В данном значении не учитываются маргины
RowHValue = RowH.Value + this.MaxBotMargin[CurRow] + MaxTopMargin;
if ((heightrule_AtLeast === RowH.HRule || heightrule_Exact == RowH.HRule) && Y + RowHValue > Y_content_end && ((0 === CurRow && 0 === CurPage) || CurRow != FirstRow))
if ((heightrule_AtLeast === RowH.HRule || heightrule_Exact == RowH.HRule) && Y + RowHValue > Y_content_end && ((0 === CurRow && 0 === CurPage && (null !== this.Get_DocumentPrev() || true === this.Parent.Is_TableCellContent())) || CurRow != FirstRow))
{
bNextPage = true;
......
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