From d8a74c13b88f0b96b28c1442c1347a75078401c4 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Mon, 18 May 2020 01:42:04 +0100 Subject: [PATCH] Fix a syntax error in the PDF generator. The /Trapped key needs to be the name False, which is not the same as the boolean false. Thanks PDF, that's clear as mud. --- common/plotters/PDF_plotter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/plotters/PDF_plotter.cpp b/common/plotters/PDF_plotter.cpp index 94375a0a61..004fe73704 100644 --- a/common/plotters/PDF_plotter.cpp +++ b/common/plotters/PDF_plotter.cpp @@ -752,7 +752,7 @@ bool PDF_PLOTTER::EndPlot() "/CreationDate (%s)\n" "/Creator (%s)\n" "/Title (%s)\n" - "/Trapped No\n", + "/Trapped False\n", date_buf, TO_UTF8( creator ), TO_UTF8( title ) );