David PHAM-VAN

Update changelog

... ... @@ -3,6 +3,7 @@
## 3.10.7
- Fix empty lines text gap
- Fix lookup index of glyph for space character [Hendrik-Brower]
## 3.10.6
... ...
... ... @@ -74,7 +74,8 @@ class TtfWriter {
for (final char in chars) {
if (char == 32) {
final glyph = TtfGlyphInfo(ttf.charToGlyphIndexMap[char]!, Uint8List(0), const <int>[]);
final glyph = TtfGlyphInfo(
ttf.charToGlyphIndexMap[char]!, Uint8List(0), const <int>[]);
glyphsMap[glyph.index] = glyph;
charMap[char] = glyph.index;
continue;
... ...