summaryrefslogtreecommitdiff
path: root/wasp
diff options
context:
space:
mode:
authorSiroj42 <siroj42@t-online.de>2020-07-31 12:09:33 (GMT)
committerSiroj42 <siroj42@t-online.de>2020-08-02 19:55:04 (GMT)
commitcc34c5d46de99adf049c1e164d873f1ed0f3cd28 (patch)
treeed718fd02d2fd59bfb2580d8a44fe175656f4e6b /wasp
parent70c1fb25cabbebe7870a7e3e825a571b9c15b201 (diff)
draw565: Fix wrong background color of strings
Signed-off-by: Joris Warmbier <siroj42@t-online.de>
Diffstat (limited to 'wasp')
-rw-r--r--wasp/draw565.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/wasp/draw565.py b/wasp/draw565.py
index 86fdb36..5e38284 100644
--- a/wasp/draw565.py
+++ b/wasp/draw565.py
@@ -291,21 +291,23 @@ class Draw565(object):
display = self._display
bgfg = self._bgfg
font = self._font
+ bg = self._bgfg >> 16
if width:
(w, h) = _bounding_box(s, font)
leftpad = (width - w) // 2
rightpad = width - w - leftpad
- self.fill(0, x, y, leftpad, h)
+ self.fill(bg, x, y, leftpad, h)
x += leftpad
for ch in s:
glyph = font.get_ch(ch)
_draw_glyph(display, glyph, x, y, bgfg)
+ self.fill(bg, x+glyph[2], y, 1, glyph[1])
x += glyph[2] + 1
if width:
- self.fill(0, x, y, rightpad, h)
+ self.fill(bg, x, y, rightpad, h)
def wrap(self, s, width):
"""Chunk a string so it can rendered within a specified width.