Use DynamicTextGlyph for spaces (fixes glyph.is_whitespace())

This commit is contained in:
rdb 2015-11-19 13:00:29 +01:00
parent f56dfb6196
commit fb0902512e
1 changed files with 1 additions and 1 deletions

View File

@ -555,7 +555,7 @@ make_glyph(int character, FT_Face face, int glyph_index) {
// If we got an empty bitmap, it's a special case.
PT(TextGlyph) glyph =
new TextGlyph(character, advance);
new DynamicTextGlyph(character, advance);
_empty_glyphs.push_back(glyph);
return glyph;