diff --git a/PROMS/Volian.Print.Library/vlnParagraph.cs b/PROMS/Volian.Print.Library/vlnParagraph.cs index 956c2fa5..a802ab4a 100644 --- a/PROMS/Volian.Print.Library/vlnParagraph.cs +++ b/PROMS/Volian.Print.Library/vlnParagraph.cs @@ -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)