apps.management: align dots in reset_device

pull/25/head
Pavol Rusnak 7 years ago
parent 00c4da83b9
commit 8b49e04ade
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

@ -162,7 +162,7 @@ async def show_mnemonic(ctx, mnemonic: str):
@ui.layout
async def show_mnemonic_page(page: int, page_count: int, pages: list):
lines = ['%d. %s' % (wi + 1, word) for wi, word in pages[page]]
lines = ['%2d. %s' % (wi + 1, word) for wi, word in pages[page]]
content = Text('Recovery seed', ui.ICON_RESET, ui.MONO, *lines)
content = Scrollpage(content, page, page_count)
ui.display.clear()

Loading…
Cancel
Save