1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-17 21:22:10 +00:00

feat(core): smaller debug square on T1

[no changelog]
This commit is contained in:
Martin Milata 2020-08-17 17:24:01 +02:00 committed by matejcik
parent bea696dfc9
commit 7271606ca2

View File

@ -40,7 +40,8 @@ if __debug__:
from apps.debug import screenshot
if not screenshot():
display.bar(Display.WIDTH - 8, 0, 8, 8, 0xF800)
side = Display.WIDTH // 30
display.bar(Display.WIDTH - side, 0, side, side, 0xF800)
display.refresh()