Skip to content

Commit

Permalink
Fixing previously introduced bug in gdispDrawStringBox()
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Bodenmann committed Nov 2, 2015
1 parent 58f6e04 commit 6158194
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gdisp/gdisp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 6158194

Please sign in to comment.