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:
parent
05855a5a1c
commit
d8a74c13b8
|
@ -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 ) );
|
||||
|
|
Loading…
Reference in New Issue