1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-08 15:48:08 +00:00

fixup! fix(core/ui): style update: fonts

This commit is contained in:
Martin Milata 2023-03-13 19:35:38 +01:00
parent 81e4fd817e
commit 7ae3e7da62

View File

@ -52,7 +52,7 @@ def process_bitmap_buffer(buf, bpp):
return res return res
def drop_left_columns(buf: list[int], width: int, drop: int): def drop_left_columns(buf, width, drop):
res = [] res = []
for i in range(len(buf)): for i in range(len(buf)):
if i % width >= drop: if i % width >= drop: