diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs index 94ef55cf..8a10e8bf 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs @@ -2856,19 +2856,19 @@ namespace VEPROMS.CSLA.Library if (TabToIdentBAdjustFont()) _MyTab.RemovedStyleUnderline = true; } - // Since we append the bullet (IdentB) to the Caution or Note tab (like in 16-bit code) - // we need to append blank characters when there is only one Note or Caution (thus no bullet) - // in order for the Note or Caution tab to consistantly print at the same horizontal location - else if (tbformat != null && !FormatStepData.AlwaysTab && !FormatStepData.MixCautionsAndNotes - && (ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.IdentB != null - && ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.IdentB.Length > 0)) - { - int identBLen = ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.IdentB.Length; - string bbstr = new string(' ', identBLen); - tbformat = tbformat + bbstr; - if (TabToIdentBAdjustFont()) - _MyTab.RemovedStyleUnderline = true; - } + //// Since we append the bullet (IdentB) to the Caution or Note tab (like in 16-bit code) + //// we need to append blank characters when there is only one Note or Caution (thus no bullet) + //// in order for the Note or Caution tab to consistantly print at the same horizontal location + //else if (tbformat != null && !FormatStepData.AlwaysTab && !FormatStepData.MixCautionsAndNotes + // && (ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.IdentB != null + // && ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.IdentB.Length > 0)) + //{ + // int identBLen = ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.IdentB.Length; + // string bbstr = new string(' ', identBLen); + // tbformat = tbformat + bbstr; + // if (TabToIdentBAdjustFont()) + // _MyTab.RemovedStyleUnderline = true; + //} return tbformat; }