Merged in Hackwerk/ugfx/drawstringfix (pull request #25)

Fix clipping of gdispGDrawString.
ugfx_release_2.6
Joel Bodenmann 2016-07-13 12:44:22 +02:00
commit be3433e930
1 changed files with 1 additions and 1 deletions

View File

@ -3231,7 +3231,7 @@ void gdispGDrawBox(GDisplay *g, coord_t x, coord_t y, coord_t cx, coord_t cy, co
g->t.font = font;
g->t.clipx0 = x;
g->t.clipy0 = y;
g->t.clipx1 = x + mf_get_string_width(font, str, 0, 0);
g->t.clipx1 = x + mf_get_string_width(font, str, 0, 0) + font->baseline_x;
g->t.clipy1 = y + font->height;
g->t.color = color;