From b0dc9b83d856053f122f4fcf99f4dbe33e46cb0a Mon Sep 17 00:00:00 2001 From: John Date: Tue, 16 Jul 2019 17:12:34 +0000 Subject: [PATCH] =?UTF-8?q?B2019-094=20=E2=80=93=20needed=20to=20account?= =?UTF-8?q?=20for=20table=20position=20adjustments=20when=20printing=20the?= =?UTF-8?q?=20checkoff=20macro=20of=20the=20following=20step.=20For=20Sout?= =?UTF-8?q?h=20Texas=20FSG20=20Addendum=205=20step5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/Volian.Print.Library/vlnMacro.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PROMS/Volian.Print.Library/vlnMacro.cs b/PROMS/Volian.Print.Library/vlnMacro.cs index cfbe67de..514ec87d 100644 --- a/PROMS/Volian.Print.Library/vlnMacro.cs +++ b/PROMS/Volian.Print.Library/vlnMacro.cs @@ -38,9 +38,10 @@ namespace Volian.Print.Library if (MyPageHelper != null && MyPageHelper.MySvg != null && MacroDef != null) { // C2018-004 create meta file for baseline compares - Volian.Base.Library.BaselineMetaFile.WriteLine("MC X={0} Y={1} {2}", XOffset - MyPageHelper.MySvg.LeftMargin, yLocation, MacroDef); + Volian.Base.Library.BaselineMetaFile.WriteLine("MC X={0} Y={1} {2}", XOffset - MyPageHelper.MySvg.LeftMargin, yLocation + MyPageHelper.TableAdjustment, MacroDef); // PageList items are located with respect to the left margin, macros are not. - MyPageHelper.MySvg.DrawMacro(MacroDef, XOffset - MyPageHelper.MySvg.LeftMargin, yLocation, cb); + // B2019-094 - needed to account for TableAdjustment - checkoff in South Texas FSG20 Addendum 5 step 5 + MyPageHelper.MySvg.DrawMacro(MacroDef, XOffset - MyPageHelper.MySvg.LeftMargin, yLocation + MyPageHelper.TableAdjustment, cb); } PrintOverride.SvgColor = push; if (textLayer != null) cb.EndLayer();