diff options
Diffstat (limited to 'src/export')
| -rw-r--r-- | src/export/pdf.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/export/pdf.rs b/src/export/pdf.rs index cac60a87..a2260f74 100644 --- a/src/export/pdf.rs +++ b/src/export/pdf.rs @@ -240,8 +240,8 @@ impl PdfFont { // Subset the font using the selected characters let subsetted = font.subsetted( chars.iter().cloned(), - &["head", "hhea", "maxp", "hmtx", "loca", "glyf"], - &["cvt ", "prep", "fpgm", /* "OS/2", "cmap", "name", "post" */], + &["head", "hhea", "maxp", "hmtx", "loca", "glyf"][..], + &["cvt ", "prep", "fpgm"][..], )?; // Specify flags for the font |
