diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2014-03-24 15:19:39 +0100 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2014-03-24 15:19:39 +0100 |
commit | 8b573f9fa29b724206c9ec0592525421d3e273c8 (patch) | |
tree | 0383c56028e11e8c15b1b647f100d204e2e3c0d9 /src/geometry | |
parent | 84ea95988c2625646da407fcc25d52305f6115ab (diff) | |
download | qtlocation-mapboxgl-8b573f9fa29b724206c9ec0592525421d3e273c8.tar.gz |
fix glyphs that have no pixels but an advance (e.g. spaces)
Diffstat (limited to 'src/geometry')
-rw-r--r-- | src/geometry/glyph_atlas.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/geometry/glyph_atlas.cpp b/src/geometry/glyph_atlas.cpp index df62ced8b1..f5eb59f567 100644 --- a/src/geometry/glyph_atlas.cpp +++ b/src/geometry/glyph_atlas.cpp @@ -39,7 +39,7 @@ Rect<uint16_t> GlyphAtlas::addGlyph(uint64_t tile_id, const std::string& face_na } // The glyph bitmap has zero width. - if (!glyph.metrics.width) { + if (!glyph.bitmap.size()) { return Rect<uint16_t>{ 0, 0, 0, 0 }; } |