diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-04-30 10:42:05 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-04-30 10:42:05 +0200 |
| commit | 2fe11f2546b08ab6257bdb594606600087c270e6 (patch) | |
| tree | e31ba1b39464b026b3db9b6da5c5e882012e58ec /drw.c | |
| parent | a21031d5d8dcdd1b95c48eeeb1a92c28abf85d6f (diff) | |
fix bold is bright
Diffstat (limited to 'drw.c')
| -rw-r--r-- | drw.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -452,7 +452,7 @@ draw_char(Canvas *canvas, FontCache *fontcache, uint_least32_t charcode, unsigne stroke_size = 0; } - FT_Stroker_Set(font->stroke, stroke_size, FT_STROKER_LINECAP_BUTT, FT_STROKER_LINEJOIN_ROUND, 0); + FT_Stroker_Set(font->stroke, stroke_size, FT_STROKER_LINECAP_SQUARE, FT_STROKER_LINEJOIN_BEVEL, 0); cg = load_bitmap(font, charcode); |