diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs index 5788085a..a3b94768 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs @@ -2490,6 +2490,13 @@ namespace VEPROMS.CSLA.Library } if (tbformat.Contains("{indent}")) // Robinson Background format CPBCK tbformat = tbformat.Substring(8); // we just need to remove the "{indent}" and leave the spaces + // Added the "{bullet}" token for McGuire and Catawba's Bulleted High Level Step type. + // Using the bullet set in the IdentB format variable (is a solid bullet for their format) + if (tbformat.Contains("{bullet}")) + { + string bulletChar = ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.IdentB.Trim(); + tbformat = tbformat.Replace("{bullet}", bulletChar); + } // rno gets parent tab if (IsRNOPart && FormatStepData.NumberSubs) {