We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6ed058 commit 28644d4Copy full SHA for 28644d4
src/FontEngine.cpp
@@ -162,7 +162,7 @@ RangeMap FontEngine::buildGidToCharCodeMap () const {
162
FT_UInt gid; // index of current glyph
163
uint32_t charcode = FT_Get_First_Char(_currentFace, &gid);
164
while (gid) {
165
- if (!charmap.valueAt(gid))
+ if (!charmap.valueExists(gid))
166
charmap.addRange(gid, gid, charcode);
167
charcode = FT_Get_Next_Char(_currentFace, charcode, &gid);
168
}
0 commit comments