Added code to prevent multiunit pdf location label and combobox from showing up under settings tab of print dialog box when printing a single unit site from the create pdf button of step tab ribbon
This commit is contained in:
parent
20903705be
commit
73c32910d4
@ -501,7 +501,7 @@ namespace VEPROMS
|
||||
if (pi == null) return;
|
||||
DlgPrintProcedure prnDlg = new DlgPrintProcedure(pi);
|
||||
//added by jcb 20130718 to support create pdf button when multiunit and user selects a unit
|
||||
prnDlg.SelectedSlave = pi.ProcedureConfig.SelectedSlave;
|
||||
prnDlg.SelectedSlave = pi.ProcedureConfig.SelectedSlave == 0 ? -1 : pi.ProcedureConfig.SelectedSlave;
|
||||
//end added by jcb 20130718
|
||||
prnDlg.ShowDialog(this); // RHM 20120925 - Center dialog over PROMS window
|
||||
//added by jcb 20130718 to support create pdf button when multiunit and user selects a unit
|
||||
|
Loading…
x
Reference in New Issue
Block a user