mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 15:38:11 +00:00
src/apps/management: don't put ? on separate line
This commit is contained in:
parent
f20febeef0
commit
81e31afc58
@ -20,15 +20,13 @@ async def layout_apply_settings(ctx, msg):
|
||||
await require_confirm(ctx, Text(
|
||||
'Change label', ui.ICON_RESET,
|
||||
'Do you really want to', 'change label to',
|
||||
ui.BOLD, '%s' % msg.label,
|
||||
ui.NORMAL, '?'))
|
||||
ui.BOLD, '%s?' % msg.label)) # TODO: split label (bold) and '?' (normal) once we support mixed styles on one line
|
||||
|
||||
if msg.language is not None:
|
||||
await require_confirm(ctx, Text(
|
||||
'Change language', ui.ICON_RESET,
|
||||
'Do you really want to', 'change language to',
|
||||
ui.BOLD, '%s' % msg.language,
|
||||
ui.NORMAL, '?'))
|
||||
ui.BOLD, '%s?' % msg.language)) # TODO: split lang (bold) and '?' (normal) once we support mixed styles on one line
|
||||
|
||||
if msg.use_passphrase is not None:
|
||||
await require_confirm(ctx, Text(
|
||||
|
Loading…
Reference in New Issue
Block a user