diff options
| author | Jules Aguillon | 2023-08-02 20:39:37 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2023-08-02 20:39:37 +0200 |
| commit | be97364b3447ab088a78d3177638ce691fc7228f (patch) | |
| tree | cfd186a7620f2c58a4c0e4d279d6753e2dceffb3 /srcs/special_font/build.pe | |
| parent | 3c3955e583c83f1e62f7975af3723e3430a72f0e (diff) | |
| download | unexpected-keyboard-be97364b3447ab088a78d3177638ce691fc7228f.tar.gz unexpected-keyboard-be97364b3447ab088a78d3177638ce691fc7228f.zip | |
font: Move glyphs into the PUA
Glyphs in the Private Use Area at uE000 will no longer conflict with
fallback fonts in the "extra keys" option.
Diffstat (limited to 'srcs/special_font/build.pe')
| -rw-r--r-- | srcs/special_font/build.pe | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/srcs/special_font/build.pe b/srcs/special_font/build.pe index bf13f23..355a330 100644 --- a/srcs/special_font/build.pe +++ b/srcs/special_font/build.pe @@ -1,11 +1,12 @@ # The special font is used for the symbols of some keys. It is built from SVG # files, one for each glyph. New() +Reencode("unicode") # Imports glyphs, first argument is file name for the generated font i = 2 while (i < $argc) - Select(Strtol($argv[i]:t:r, 16)) + Select(Strtol($argv[i]:t:r, 16) + 0xE000) Import($argv[i], 0, 0, 4.0, 0.1) AutoWidth(150) i++ |
