summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-08-14 19:36:22 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-08-14 19:36:22 (GMT)
commit371011c70f4440656bb426c308a0f79af5948dd3 (patch)
tree032acd10348ba64891eab2d2b70e24e821d29078
parent7d0fc8100a0085772c3b2c331e5eb5771121081c (diff)
parenta47e0921b31caf33ad3ebf5466785c5b053c5e0a (diff)
Merge branch 'master' of https://github.com/daniel-thompson/wasp-os
-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.