From 34886beccbbdaf6d3f034a3ed3d4373fe069c50d Mon Sep 17 00:00:00 2001 From: mschill Date: Mon, 16 Feb 2026 14:45:08 -0500 Subject: [PATCH] B2026-015 Changing Formats for a Section When changing the format for a section, the available section types sometimes requires the user to exit and get back in. Noticed this with Vogle when changing for a format VEGBckStps to VEGP2 that the Landscape Attachment was not showing till exited and got back in. --- PROMS/VEPROMS User Interface/frmSectionProperties.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/VEPROMS User Interface/frmSectionProperties.cs b/PROMS/VEPROMS User Interface/frmSectionProperties.cs index 9d19bf66..06ee3ce2 100644 --- a/PROMS/VEPROMS User Interface/frmSectionProperties.cs +++ b/PROMS/VEPROMS User Interface/frmSectionProperties.cs @@ -678,7 +678,7 @@ namespace VEPROMS // to check that there are enough docstyles to map the selected type of section. PlantFormat pf = _SectionConfig.MyFormat != null ? _SectionConfig.MyFormat.PlantFormat : _SectionConfig.MyDefaultFormat.PlantFormat; if (!_Initializing && ppCmbxFormat.SelectedIndex >= 0) - pf = FormatInfoList.SortedFormatInfoList[ppCmbxFormat.SelectedIndex].PlantFormat; + pf = ((FormatInfo) ppCmbxFormat.SelectedItem).PlantFormat; else if (!_Initializing) // if the format was changed, it may have been set to default. pf = _SectionConfig.MyDefaultFormat.PlantFormat; _Initializing = true;