Fix add '\t' functionality

This commit is contained in:
Filip Sykala 2021-09-22 12:07:40 +02:00
parent b7d136d205
commit a812f74ca3
3 changed files with 50 additions and 30 deletions

View file

@ -41,8 +41,8 @@ public:
// description of one letter
struct Glyph
{
ExPolygons polygons;
int advance_width, left_side_bearing;
ExPolygons shape;
int advance_width, left_side_bearing;
};
// cache for glyph by unicode
using Glyphs = std::map<int, Glyph>;