diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs index c1b3fafb..648453bf 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs @@ -4791,6 +4791,19 @@ namespace VEPROMS.CSLA.Library } else if (FormatStepData.TabData.IsTransition) return tbformat; + // F2020-009: Farley Reorder of cautions/notes - single notes were getting a bullet + else if (ActiveFormat != null && ActiveFormat.Name.ToUpper().StartsWith("FNP")) + { + if (tbformat != null && nextItem != null && !FormatStepData.AlwaysTab && + (!FormatStepData.MixCautionsAndNotes && + (FormatStepData.TabData.UsePreviousStyle && !nextStepData.TabData.UsePreviousStyle && tbformat == nextTbFormat) || + ((prevTbFormat != tbformat && (nextItem.MyContent.Type == MyContent.Type))))) + { + tbformat = tbformat + ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.IdentB; + if (TabToIdentBAdjustFont()) + _MyTab.RemovedStyleUnderline = true; + } + } // else if this has a next else if (tbformat != null && nextItem != null && !FormatStepData.AlwaysTab && (!FormatStepData.MixCautionsAndNotes ||