From 251f32815b2a9da2e006d4232dd0e672521e3746 Mon Sep 17 00:00:00 2001 From: Kathy Date: Fri, 31 Jul 2020 12:43:18 +0000 Subject: [PATCH] B2020-102: extra blank page after Auto TOC when foldout pages were also printed --- PROMS/Volian.Print.Library/PromsPrinter.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/PROMS/Volian.Print.Library/PromsPrinter.cs b/PROMS/Volian.Print.Library/PromsPrinter.cs index 110a233a..54236532 100644 --- a/PROMS/Volian.Print.Library/PromsPrinter.cs +++ b/PROMS/Volian.Print.Library/PromsPrinter.cs @@ -947,11 +947,12 @@ namespace Volian.Print.Library InsertBlankPage(cb); } GenerateTOC(mySection, myProcedure, cb, _TextLayer); + // B2020-102: extra page printing after auto TOC for summer. Retested for Farley and was successful also // F2018-033: Farley Auto TOC. If doing foldouts or supinfo facing pages, add a blank page after also: - if (((cb.PdfWriter.CurrentPageNumber % 2 == 0 && !_MyHelper.CreatingFoldoutPage) || myProcedure.ProcHasSupInfoData) && InsertBlankPages) // Bug Fix: B2016-181 - add blank page if page count is even - { - InsertBlankPage(cb); - } + //if (myProcedure.ProcHasSupInfoData && InsertBlankPages) // Bug Fix: B2016-181 - add blank page if page count is even + //{ + // InsertBlankPage(cb); + //} } else {