From d06c8967957d0d8f0f387b45348e02a682895791 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 13 Nov 2014 20:24:08 +0000 Subject: [PATCH] fixed issue with placing an End message at the end of sections that are printed with the continuous pagination setting --- PROMS/Volian.Print.Library/vlnParagraph.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PROMS/Volian.Print.Library/vlnParagraph.cs b/PROMS/Volian.Print.Library/vlnParagraph.cs index 04651fa6..d1552585 100644 --- a/PROMS/Volian.Print.Library/vlnParagraph.cs +++ b/PROMS/Volian.Print.Library/vlnParagraph.cs @@ -1523,6 +1523,7 @@ namespace Volian.Print.Library xpos = Math.Max(xpos, XOffsetBox + (float)docstyle.Layout.LeftMargin); MyPageHelper.BottomMessage = new vlnText(cb, this, myMsg, myMsg, xpos, msg_yLocation, docstyle.End.Font); MyPageHelper.MyGaps.Add(new Gap(msg_yLocation, msg_yLocation - MyPageHelper.BottomMessage.Height)); + yPageStart -= MyPageHelper.BottomMessage.Height; } } }