diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-04-10 19:22:51 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-04-10 19:22:51 (GMT) |
| commit | 22ca8886c25115df575f8a3e67a5da9059fc3f28 (patch) | |
| tree | f367ba7d9092c9cec7fb541909635070f9df1772 /wasp/apps/launcher.py | |
| parent | 906c313e49ffbd5ac46a4f2fe6334516f3e6676f (diff) | |
wasp: draw565: Automatic RLE format conversion
From here we can also bring colour to the launcher!
Diffstat (limited to 'wasp/apps/launcher.py')
| -rw-r--r-- | wasp/apps/launcher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wasp/apps/launcher.py b/wasp/apps/launcher.py index 274ea9c..4e76ab1 100644 --- a/wasp/apps/launcher.py +++ b/wasp/apps/launcher.py @@ -66,7 +66,7 @@ class LauncherApp(): if not app: return draw.set_color(0xffff) - draw.rleblit(app.ICON, (x+13, y+12)) + draw.blit(app.ICON, x+13, y+12) draw.set_color(0xbdb6) draw.string(app.NAME, x, y+120-30, 120) |
