mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-22 14:28:07 +00:00
firmware: homescreen shows trezor.io/start when storage not initialized
This commit is contained in:
parent
1eff07f84d
commit
9257d44b7a
@ -22,9 +22,12 @@ def display_homescreen():
|
||||
image = res.load('apps/homescreen/res/trezor_logo.toig')
|
||||
ui.display.icon(0, 0, image, ui.WHITE, ui.BLACK)
|
||||
|
||||
label = storage.get_label()
|
||||
if not label:
|
||||
label = 'My TREZOR'
|
||||
if not storage.is_initialized():
|
||||
label = 'Go to trezor.io/start'
|
||||
else:
|
||||
label = storage.get_label()
|
||||
if not label:
|
||||
label = 'My TREZOR'
|
||||
ui.display.text_center(120, 210, label, ui.BOLD, ui.WHITE, ui.BLACK)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user