Fixing previously introduced bug in gdispDrawStringBox()

ugfx_release_2.6
Joel Bodenmann 2015-11-02 12:25:24 +01:00
parent 58f6e0452e
commit 615819441b
1 changed files with 1 additions and 1 deletions

View File

@ -3285,7 +3285,7 @@ void gdispGDrawBox(GDisplay *g, coord_t x, coord_t y, coord_t cx, coord_t cy, co
mf_wordwrap(font, cx, str, mf_line_callback, &wrapParameters);
#else
mf_render_aligned(font, x, y, justify, str, 0, fillcharglyph, g);
mf_render_aligned(font, x, y, justify, str, 0, drawcharglyph, g);
#endif
autoflush(g);