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.
This commit is contained in:
Jeff Young 2020-05-18 01:42:04 +01:00
parent 05855a5a1c
commit d8a74c13b8
1 changed files with 1 additions and 1 deletions

View File

@ -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 ) );