plug-ins: vectorize and apply-masks checked by default for PDF export.

They used to be TRUE by default but that was overwritten. This has been
fixed in commit c08cf41. Let's bring these defaults back.
This commit is contained in:
Jehan 2017-06-15 01:09:12 +02:00
parent c8550c9581
commit 90219a0208
1 changed files with 2 additions and 2 deletions

View File

@ -259,9 +259,9 @@ static PdfMultiPage multi_page;
static PdfOptimize optimize = static PdfOptimize optimize =
{ {
FALSE, /* vectorize */ TRUE, /* vectorize */
TRUE, /* ignore_hidden */ TRUE, /* ignore_hidden */
FALSE, /* apply_masks */ TRUE, /* apply_masks */
FALSE /* layers_as_pages */ FALSE /* layers_as_pages */
}; };