From b4f2b891393f1ac92f1a955c79b29a52f0193d27 Mon Sep 17 00:00:00 2001 From: John Jenko Date: Thu, 4 Dec 2025 16:42:40 -0500 Subject: [PATCH] F2025-040 Added code to adjust the position of the CAS box around the high level step number in single column attachment sections --- PROMS/Volian.Print.Library/vlnParagraph.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PROMS/Volian.Print.Library/vlnParagraph.cs b/PROMS/Volian.Print.Library/vlnParagraph.cs index 591ed771..4a52b20f 100644 --- a/PROMS/Volian.Print.Library/vlnParagraph.cs +++ b/PROMS/Volian.Print.Library/vlnParagraph.cs @@ -6456,8 +6456,11 @@ namespace Volian.Print.Library { if (itemInfo.MyDocStyle.AlignHLSTabWithSect || itemInfo.FormatStepData.AlignHLSTabWithSectOvride) { + float orgXOffset = MyTab.XOffset; myTab.XOffset = (float)itemInfo.MyDocStyle.Layout.LeftMargin + (float)formatInfo.PlantFormat.FormatData.SectData.SectionHeader.Pos; XOffset = myTab.XOffset + myTab.Width; + // F2025-040 Adjust the Cont Act box position around HLS number + if (myTab.MyMacro != null) myTab.MyMacro.XOffset += (MyTab.XOffset - orgXOffset); } else {