B2019-128: fixed incorrect watermark on merged & print all procedures
This commit is contained in:
		| @@ -628,7 +628,8 @@ namespace VEPROMS | ||||
| 			CreateDebugFiles(); | ||||
| 			// If file exists, determine if overwrite checkbox allows overwrite, if not prompt. | ||||
| 			Volian.Print.Library.Rtf2Pdf.PdfDebug = cbxDebug.Checked; | ||||
| 			PrintWatermark pw = (swtbtnWaterMark.Value) ? (PrintWatermark)cbxWaterMark.SelectedValue : PrintWatermark.None; | ||||
| 			// B2019-128: The combo box list did not include the 'None' option so the selected value was not the correct watermark (had to add 1 to the selected index) | ||||
| 			PrintWatermark pw = (swtbtnWaterMark.Value) ? (PrintWatermark)(cbxWaterMark.SelectedIndex+1) : PrintWatermark.None; | ||||
| 			// Determine change bar settings.  First get from config & then see if override from dialog.  | ||||
| 			// Also check that format allows override. | ||||
| 			ChangeBarDefinition cbd = DetermineChangeBarSettings(); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user