We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 574f755 + 1ba58a8 commit 4585f41Copy full SHA for 4585f41
1 file changed
make/pass1/index.mjs
@@ -25,6 +25,9 @@ async function pass(argv) {
25
26
if (main.head.unitsPerEm !== 1000) CliProc.rebaseFont(main, 1000);
27
28
+ // Bake tnum for UI
29
+ if (argv.tnum) bakeFeature("tnum", main, c => c !== 0x2d);
30
+
31
if (argv.latinCfg?.bakeFeatures) {
32
for (const feature of argv.latinCfg.bakeFeatures) {
33
const filter = feature.range
@@ -43,9 +46,6 @@ async function pass(argv) {
43
46
// Drop enclosed alphanumerics and PUA
44
47
if (!argv.mono) dropCharacters(main, c => isEnclosedAlphanumerics(c) || isPua(c));
45
48
- // Bake tnum for UI
- if (argv.tnum) bakeFeature("tnum", main, c => c !== 0x2d);
-
49
if (argv.italize) {
50
italize(as, +9.4);
51
italize(ws, +9.4);
0 commit comments