F2017-046: Remove ‘@@’ in SectionNumber/SectionTitle page list item if on facing page
This commit is contained in:
parent
81aad70457
commit
1995e44cc7
@ -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
|
||||
// it to the svgGroup.
|
||||
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)
|
||||
{
|
||||
string token = match.Value;
|
||||
|
Loading…
x
Reference in New Issue
Block a user