Commit 2f45be08 authored by Ilya Kirillov's avatar Ilya Kirillov

Fix bug #32748.

parent 35824c41
...@@ -2511,7 +2511,8 @@ CDocument.prototype.Recalculate_PageColumn = function() ...@@ -2511,7 +2511,8 @@ CDocument.prototype.Recalculate_PageColumn = function()
var NewPageSection = new CDocumentPageSection(); var NewPageSection = new CDocumentPageSection();
NewPageSection.Pos = Index; NewPageSection.Pos = Index;
NewPageSection.EndPos = Index; NewPageSection.EndPos = Index;
NewPageSection.Y = true === PageSection.Is_CalculatingSectionBottomLine() ? PageSection.CurrentY : SectionY + 0.001; NewPageSection.Y = SectionY + 0.001; // bug fix 32748 проверить здесь
//NewPageSection.Y = true === PageSection.Is_CalculatingSectionBottomLine() ? PageSection.CurrentY : SectionY + 0.001;
NewPageSection.YLimit = true === PageSection.Is_CalculatingSectionBottomLine() ? PageSection.YLimit2 : RealYLimit; NewPageSection.YLimit = true === PageSection.Is_CalculatingSectionBottomLine() ? PageSection.YLimit2 : RealYLimit;
Page.Sections[_SectionIndex] = NewPageSection; Page.Sections[_SectionIndex] = NewPageSection;
......
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