increase PSI labels width
Add argument to fmrPDFStatusForm call for pagenum transition processing (B2015-053) Add argument for pagenum transition processing (B2015-053) Add panel/scroll bar for PSI that has many fields (on larger font display, could not access bottommost) (B2015-051) Add property for tracking of pagenum transitions (B2015-053) For section list, use section default (procedure steps) if transition format has user interface of ‘SectDefault’. (B2015-052) Pagenum transition processing – add 3rd pass for fix. (B2015-053)
This commit is contained in:
@@ -162,7 +162,17 @@ namespace Volian.Controls.Library
|
||||
cbTranProcsFillIn(_CurrentProcedure);
|
||||
if (_CurrentProcedure.Sections != null)
|
||||
{
|
||||
cbTranSectsFillIn(secitm, secitm == null ? -1 : secitm.ItemID, true);
|
||||
// if the selected format is using section default, initialize with the section default (find it),
|
||||
// otherwise use current section item.
|
||||
int secStartId = secitm.ItemID;
|
||||
E_TransUI etm = (E_TransUI)_CurrentProcedure.ActiveFormat.PlantFormat.FormatData.TransData.TransTypeList[_TranFmtIndx].TransUI;
|
||||
if ((etm & E_TransUI.SectDefault) == E_TransUI.SectDefault)
|
||||
{
|
||||
secStartId = FindSectionStart(_CurrentProcedure);
|
||||
secitm = ItemInfo.Get(secStartId);
|
||||
selitm = (secitm.Steps.Count > 0) ? secitm.Steps[0] : null;
|
||||
}
|
||||
cbTranSectsFillIn(secitm, secitm == null ? -1 : secStartId, true);
|
||||
// Fill step items, passing in the active step to the selected item, or the first
|
||||
// step if the selection was not at the step level.
|
||||
ItemInfo stpitm = null;
|
||||
|
Reference in New Issue
Block a user