From 7a5129208c77f3b4e039609bd763dad9a1ad1f15 Mon Sep 17 00:00:00 2001 From: Paul Larsen Date: Wed, 22 May 2024 16:08:12 -0400 Subject: [PATCH] B2024-034 Fix Overwrite PDF File. --- PROMS/Volian.Print.Library/PromsPrinter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/Volian.Print.Library/PromsPrinter.cs b/PROMS/Volian.Print.Library/PromsPrinter.cs index 4d61ef03..11b1969c 100644 --- a/PROMS/Volian.Print.Library/PromsPrinter.cs +++ b/PROMS/Volian.Print.Library/PromsPrinter.cs @@ -699,7 +699,7 @@ namespace Volian.Print.Library try { - if (File.Exists(outputFileName)) + if (File.Exists(outputFileName) && !OverWrite) { if (!BaselineTesting && !SaveLinks) // B2024-031 don't do if creating PDF hyperlinks { -- 2.47.2