Fix elided text rendering on mcu

Commit aee3ffca27 accidentally removed the elision character
This commit is contained in:
Simon Hausmann 2022-03-10 11:43:01 +01:00
parent b34f733716
commit 43759cd1bb

View file

@ -156,7 +156,8 @@ fn embed_font(family_name: String, font: fontdue::Font, scale_factor: f64) -> Bi
let coverage = ('a'..='z')
.chain('A'..='Z')
.chain('0'..='9')
.chain(" !\"#$%&'()*+,-./:;<=>?@\\]^_|~".chars());
.chain(" !\"#$%&'()*+,-./:;<=>?@\\]^_|~".chars())
.chain(std::iter::once('…'));
let mut character_map: Vec<CharacterMapEntry> = coverage
.enumerate()