1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-07 07:12:34 +00:00

fixup! refactor(core/rust) use TString in Label and Button

This commit is contained in:
tychovrahe 2024-03-26 22:46:43 +01:00
parent 7486a5c915
commit 7defafc9d7

View File

@ -90,9 +90,9 @@ where
right: Option<TString<'static>>,
) -> Self {
let cancel = match left {
Some(verb) => match verb {
TString::Str("^") => Button::with_icon(theme::ICON_UP),
TString::Str("<") => Button::with_icon(theme::ICON_BACK),
Some(verb) => match verb.map(|s| s) {
"^" => Button::with_icon(theme::ICON_UP),
"<" => Button::with_icon(theme::ICON_BACK),
_ => Button::with_text(verb),
},
_ => Button::with_icon(theme::ICON_CANCEL),