mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 20:19:23 +00:00
apps.homescreen: optimize logo display
This commit is contained in:
parent
fed8838545
commit
bd514c4732
Binary file not shown.
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 1.4 KiB |
@ -8,6 +8,7 @@ async def swipe_to_rotate():
|
||||
while True:
|
||||
degrees = await Swipe(absolute=True)
|
||||
ui.display.orientation(degrees)
|
||||
display_homescreen()
|
||||
|
||||
|
||||
async def dim_screen():
|
||||
@ -27,12 +28,12 @@ async def dim_screen():
|
||||
def display_homescreen():
|
||||
from apps.common import storage
|
||||
|
||||
image = res.load('apps/homescreen/res/trezor.toig')
|
||||
image = res.load('apps/homescreen/res/trezor_logo.toig')
|
||||
ui.display.icon(0, 0, image, ui.WHITE, ui.BLACK)
|
||||
|
||||
ui.display.bar(0, 180, 240, 240, ui.BLACK)
|
||||
|
||||
label = storage.get_label() or 'My TREZOR'
|
||||
label = storage.get_label()
|
||||
if not label:
|
||||
label = 'My TREZOR'
|
||||
ui.display.text_center(120, 210, label, ui.BOLD, ui.WHITE, ui.BLACK)
|
||||
|
||||
|
||||
|
BIN
src/apps/homescreen/res/trezor_logo.toig
Normal file
BIN
src/apps/homescreen/res/trezor_logo.toig
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user