diff options
-rw-r--r-- | glcd/glcd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/glcd/glcd.c b/glcd/glcd.c index 6f61cb5c..6c3a830b 100644 --- a/glcd/glcd.c +++ b/glcd/glcd.c @@ -462,12 +462,12 @@ void lcdDrawRect(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint8_t fil y0 = TempY; } if(filled) { - lcdFillArea(x0, y0, x1, y1, color); + lcdFillArea(x0, y0, x1+1, y1+1, color); } else { lcdDrawLine(x0, y0, x1, y0, color); lcdDrawLine(x0, y1, x1, y1, color); lcdDrawLine(x0, y0, x0, y1, color); - lcdDrawLine(x1, y0, x1, y1, color); + lcdDrawLine(x1, y0, x1, y1+1, color); } } @@ -477,7 +477,7 @@ void lcdDrawRectString(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, const off_left = ((x1-x0)-lcdMeasureString(str, font))/2; off_up = ((y1-y0) - lcdGetFontHeight(font)) / 2; - lcdDrawRect(x0, y0, x1, y1, 1, bkColor); + lcdDrawRect(x0, y0, x1, y1, filled, bkColor); /* Abhishek: default to solid text for this? */ lcdDrawString(x0+off_left, y0+off_up, str, font, fontColor, bkColor, solid); } |