1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-22 22:38:08 +00:00

firmware: homescreen shows trezor.io/start when storage not initialized

This commit is contained in:
Pavol Rusnak 2017-04-01 23:33:28 +02:00
parent 1eff07f84d
commit 9257d44b7a
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -22,6 +22,9 @@ def display_homescreen():
image = res.load('apps/homescreen/res/trezor_logo.toig')
ui.display.icon(0, 0, image, ui.WHITE, ui.BLACK)
if not storage.is_initialized():
label = 'Go to trezor.io/start'
else:
label = storage.get_label()
if not label:
label = 'My TREZOR'