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();