diff options
author | Eric Bailey <git@esb.lol> | 2024-10-08 14:02:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-08 12:02:53 -0700 |
commit | 2bb1f4abb89f5d3db9a3ceb0596922227ff6559c (patch) | |
tree | 85ffca7b5871f7cd93954ec9765c665f5cebfa3b /src | |
parent | 3da4f9b170ad8485d8940023081a55ef6478cb18 (diff) | |
download | voidsky-2bb1f4abb89f5d3db9a3ceb0596922227ff6559c.tar.zst |
Merge fontVariant defs (#5652)
Diffstat (limited to 'src')
-rw-r--r-- | src/alf/fonts.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alf/fonts.ts b/src/alf/fonts.ts index b46faed1c..331da868a 100644 --- a/src/alf/fonts.ts +++ b/src/alf/fonts.ts @@ -63,7 +63,7 @@ export function applyFonts( * Disable contextual ligatures * {@link https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant} */ - style.fontVariant = ['no-contextual'] + style.fontVariant = (style.fontVariant || []).concat('no-contextual') } /* |