Merge pull request #2596 from adafruit/mikeysklar-rgbmatrix
tile_height error changing from 14 to 12 for font
This commit is contained in:
commit
70d280aae2
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ display = framebufferio.FramebufferDisplay(matrix, auto_refresh=False)
|
||||||
def tilegrid(palette):
|
def tilegrid(palette):
|
||||||
return displayio.TileGrid(
|
return displayio.TileGrid(
|
||||||
bitmap=terminalio.FONT.bitmap, pixel_shader=palette,
|
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()
|
g = displayio.Group()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue