From edf20f8a2cdb8d976f321f58149c117b541c2b02 Mon Sep 17 00:00:00 2001 From: Kathy Date: Mon, 29 Jul 2013 11:59:54 +0000 Subject: [PATCH] =?UTF-8?q?Use=20the=20Print=20tab=20(IdentPrint)=20to=20d?= =?UTF-8?q?etermine=20if=20=E2=80=98,=20step=E2=80=99=20should=20be=20adde?= =?UTF-8?q?d=20in=20resolved=20text,=20rather=20than=20edit=20tab=20(Ident?= =?UTF-8?q?Edit).=20This=20fix=20is=20for=20Calloway.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs b/PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs index df1e887d..e8ffda76 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs @@ -531,7 +531,8 @@ namespace VEPROMS.CSLA.Library { int nxtTokenE = tb._TransFormat.IndexOf("}", nxtTokenS); string nxtToken = tb._TransFormat.Substring(nxtTokenS, nxtTokenE - nxtTokenS + 1); - tb.SectNumWithStepNum = tb._ToItem.IsStep && nxtToken.Contains("Step") && tb._ToItem.MyHLS.FormatStepData.TabData.IdentEdit.Contains("{Section Prefix}"); + tb.SectNumWithStepNum = tb._ToItem.IsStep && nxtToken.Contains("Step") + && tb._ToItem.MyHLS.FormatStepData.TabData.IdentPrint.Contains("{Section Prefix}"); } } if (token == "{.}" && tb._ToItem.ItemID == tb._RangeItem.ItemID)