HOTFIX: Some composite letters' CV/SS doesn't work

This commit is contained in:
be5invis 2020-08-16 21:47:31 -07:00
parent 8346258ca5
commit cbd5952ca3
3 changed files with 18 additions and 4 deletions

View file

@ -28,6 +28,6 @@ module.exports = function (para) {
}
}
finalizeFont(para, gs.glyphStore, excludeChars, font);
return { font, glyphStore: gs.glyphStore };
const finalGs = finalizeFont(para, gs.glyphStore, excludeChars, font);
return { font, glyphStore: finalGs };
};