This commit is contained in:
parent
8b1498080a
commit
a19d598ec7
@ -499,7 +499,7 @@ namespace Volian.Print.Library
|
||||
// If last step & there should be an end message, pagination tests need to account for the 3 lines the end
|
||||
// message uses. The 3 is for a line above, the end message line & the line below (in case there is a border/box line).
|
||||
float yEndMsg = !MyItemInfo.IsSection && MyItemInfo.MyHLS.NextItem == null && (MyItemInfo.MyDocStyle.End.Message ?? "") != "" ? 3 * SixLinesPerInch : 0;
|
||||
float yWithinMargins = CalculateYLocation(yLocation, yTopMargin) - yBottomMargin - SixLinesPerInch;
|
||||
float yWithinMargins = CalculateYLocation(yLocation, yTopMargin) - yBottomMargin; // -SixLinesPerInch;
|
||||
// if step is breaking over a number of pages, determine if the current step is the
|
||||
// location of a pagebreak.
|
||||
if (MyPageHelper.ParaBreaks.Count > 0)
|
||||
@ -553,7 +553,7 @@ namespace Volian.Print.Library
|
||||
}
|
||||
}
|
||||
if (_Match16BitPagination) mySize = YSize;
|
||||
float ySize7LPI = YSize + SixLinesPerInch;
|
||||
float ySize7LPI = YSize; // +SixLinesPerInch;
|
||||
if (_Match16BitPagination) ySize7LPI += SixLinesPerInch;
|
||||
string firstStep = "No";
|
||||
if (MyItemInfo.IsHigh && MyItemInfo.MyPrevious == null)
|
||||
|
Loading…
x
Reference in New Issue
Block a user