From 4d83b0e455b3af03952de92cf66e63b550c6469b Mon Sep 17 00:00:00 2001 From: John Date: Thu, 14 Sep 2017 19:24:45 +0000 Subject: [PATCH] =?UTF-8?q?B2017-207=20cleared=20the=20list=20of=20continu?= =?UTF-8?q?e=20messages=20before=20adding=20a=20new=20one=20so=20that=20we?= =?UTF-8?q?=20don=E2=80=99t=20print=20duplicate=20continue=20messages=20on?= =?UTF-8?q?=20the=20same=20page?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 b68fa68d..db7102e0 100644 --- a/PROMS/Volian.Print.Library/vlnParagraph.cs +++ b/PROMS/Volian.Print.Library/vlnParagraph.cs @@ -2859,6 +2859,7 @@ namespace Volian.Print.Library else xoffB = docstyle.Layout.LeftMargin + docstyle.Continue.Bottom.Margin ?? 0; //MyPageHelper.BottomMessage = new vlnText(cb, this, myMsg, myMsg, docstyle.Layout.LeftMargin + XOffsetBox + docstyle.Continue.Bottom.Margin ?? 0, msg_yLocation, docstyle.Continue.Bottom.Font);// MyItemInfo.ActiveFormat.PlantFormat.FormatData.Font); + MyPageHelper.BottomMessage.Clear(); // B2017-207 should be only one continue message - was putting an extra continue message in middle of page for V.S.Summer (ex. AOP set, 900.4 Attachment 12) MyPageHelper.BottomMessage.Add(new vlnText(cb, this, myMsg, myMsg, xoffB, msg_yLocation, docstyle.Continue.Bottom.Font)); } }