From 4686cb0f6eb990b08eadfc8d45c84c488f5a409e Mon Sep 17 00:00:00 2001 From: John Date: Thu, 16 Feb 2017 17:09:52 +0000 Subject: [PATCH] Added a check for column mode before adjusting a sub-step note or caution text width --- PROMS/Volian.Print.Library/vlnParagraph.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PROMS/Volian.Print.Library/vlnParagraph.cs b/PROMS/Volian.Print.Library/vlnParagraph.cs index c1b877d4..faa74598 100644 --- a/PROMS/Volian.Print.Library/vlnParagraph.cs +++ b/PROMS/Volian.Print.Library/vlnParagraph.cs @@ -5566,7 +5566,8 @@ namespace Volian.Print.Library { // B2016-269: if caution/note & not boxed, with tab adjust width based on xoffset of tab // so text doesn't print out of right border. - if (!MyItemInfo.MyParent.IsHigh && MyTab != null && MyTab.YOffset == YOffset) + // B2017-027: Added a check for column mode - we only want to do this if in single column mode + if (!MyItemInfo.MyParent.IsHigh && MyTab != null && MyTab.YOffset == YOffset && MyItemInfo.MyActiveSection.ColumnMode == 0) Width = MyHighLevelParagraph.Width - MyTab.Width - (MyTab.XOffset - MyHighLevelParagraph.XOffset) - 6; else Width = (float)formatInfo.MyStepSectionLayoutData.WidT - 6 - mycolT;