Commit 3ce2850e authored by Ilya Kirillov's avatar Ilya Kirillov

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

Bug #32095 Исправлен баг с падением при пересчете таблицы. Исправлен баг с пересчетом таблицы, у которой первая строка с высотой больше высоты страницы. Исправлен баг с зависанием из-за трека таблиц.
parent 206a63eb
......@@ -405,6 +405,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);
......
......@@ -3286,6 +3286,8 @@ CTable.prototype =
{
if (true != this.Is_EmptyPage(CurPage))
break;
CurPage++;
}
this.private_StartTrackTable(CurPage);
......
......@@ -2338,7 +2338,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