Merge pull request #2596 from adafruit/mikeysklar-rgbmatrix

tile_height error changing from 14 to 12 for font
This commit is contained in:
Mikey Sklar 2023-08-22 11:50:52 -07:00 committed by GitHub
commit 70d280aae2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()