B2022-034, B2022-040 Unit designators were not being displayed properly in the editor if a Parent/Child procedure is printed (from the tree) before opened in the editor.

This commit is contained in:
John Jenko 2022-03-21 18:21:26 +00:00
parent 860e8e6226
commit 2558b99b69

View File

@ -3822,7 +3822,10 @@ namespace VEPROMS.CSLA.Library
try
{
ReadData(dr);
//AddContent(dr); // B2022-025: memory leak. Content gets added in other places - this was adding it twice.
AddContent(dr); // B2022-025: memory leak. Content gets added in other places - this was adding it twice.
// B2022-034 & B2022-040: needed to un-comment the AddContent(), previous bug fix (B2022-025)
// caused the unit designators (BNPP NOPs) to show resolved in the editor
// when the procedure was printed (from tree) for a specific unit prior to editing
}
catch (Exception ex)
{