Replace the coded property with isType3Font when building the font properties object in PartialEvaluator.translateFont

This appears to simply have been forgotten in the re-factoring in PR 4815, where the `coded` property was renamed to the *much* more descriptive `isType3Font` property.
This commit is contained in:
Jonas Jenwald 2017-08-08 14:03:02 +02:00
parent a1d88d8e2e
commit 093afd1212

View File

@ -2459,7 +2459,7 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
capHeight: descriptor.get('CapHeight'),
flags: descriptor.get('Flags'),
italicAngle: descriptor.get('ItalicAngle'),
coded: false,
isType3Font: false,
};
var cMapPromise;