From 46719a6a2e18f45a739a4c78fa5f3649348f0661 Mon Sep 17 00:00:00 2001 From: mikey sklar Date: Tue, 22 Aug 2023 11:12:42 -0700 Subject: [PATCH] tile_height error changing from 14 to 12 for font --- CircuitPython_RGBMatrix/scroller/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CircuitPython_RGBMatrix/scroller/code.py b/CircuitPython_RGBMatrix/scroller/code.py index 9ab3b7e86..5068358e8 100644 --- a/CircuitPython_RGBMatrix/scroller/code.py +++ b/CircuitPython_RGBMatrix/scroller/code.py @@ -32,7 +32,7 @@ display = framebufferio.FramebufferDisplay(matrix, auto_refresh=False) def tilegrid(palette): return displayio.TileGrid( bitmap=terminalio.FONT.bitmap, pixel_shader=palette, - width=1, height=1, tile_width=6, tile_height=14, default_tile=32) + width=1, height=1, tile_width=6, tile_height=12, default_tile=32) g = displayio.Group()