From 1a3edabd1f3439c650d48599b3eed95c6c092aed Mon Sep 17 00:00:00 2001 From: BobLd Date: Mon, 27 Apr 2020 12:51:02 +0100 Subject: [PATCH] Set ClipPaths to false if no ParsingOptions given (consistent behaviour) --- src/UglyToad.PdfPig/Parser/PdfDocumentFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UglyToad.PdfPig/Parser/PdfDocumentFactory.cs b/src/UglyToad.PdfPig/Parser/PdfDocumentFactory.cs index 7d11dfd6..ad1e9be6 100644 --- a/src/UglyToad.PdfPig/Parser/PdfDocumentFactory.cs +++ b/src/UglyToad.PdfPig/Parser/PdfDocumentFactory.cs @@ -58,7 +58,7 @@ var passwords = new List(); - var clipPaths = options?.ClipPaths ?? true; + var clipPaths = options?.ClipPaths ?? false; if (options?.Password != null) {