F2017-046: Remove ‘@@’ in SectionNumber/SectionTitle page list item if on facing page

This commit is contained in:
Kathy Ruffing 2017-07-17 14:50:10 +00:00
parent 81aad70457
commit 1995e44cc7

View File

@ -1290,6 +1290,8 @@ namespace Volian.Print.Library
// of each other. Use a temporary string (plstr) to process the pagelist tokens for each pagelist line (row) before adding // of each other. Use a temporary string (plstr) to process the pagelist tokens for each pagelist line (row) before adding
// it to the svgGroup. // it to the svgGroup.
plstr = pageItem.Token; plstr = pageItem.Token;
// F2017-046: Remove the '@@' characters that were getting printed on SAMG Sup Info facing pages for Calvert (BGESAM1 format).
if (MyPromsPrinter.DoingFacingPage && plstr.Contains("@@")) plstr = plstr.Replace("@@", "");
foreach (Match match in matches) foreach (Match match in matches)
{ {
string token = match.Value; string token = match.Value;