diff --git a/PROMS/Volian.Print.Library/Pagination.cs b/PROMS/Volian.Print.Library/Pagination.cs index b65a3213..d33de78c 100644 --- a/PROMS/Volian.Print.Library/Pagination.cs +++ b/PROMS/Volian.Print.Library/Pagination.cs @@ -1578,7 +1578,9 @@ namespace Volian.Print.Library private static bool StepWillFitOnBlankPageButNotOnCurrentPage(vlnParagraph myPara, float yLocation, float yStart,float fullPage) { float spaceOnCurrentPage = fullPage - (-yLocation+yStart); - return (myPara.YSize > spaceOnCurrentPage && myPara.YSize < fullPage); + // B2019-124 - Pagination - if substep will fit on a blank page but will not fit on the current page + // And is not the first substep then break + return (myPara.MyItemInfo.Ordinal > 1 && myPara.YSize > spaceOnCurrentPage && myPara.YSize < fullPage); } private static bool InSameBox(vlnParagraph myPara, vlnParagraph minPara2) {