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

pull/3649/head
tychovrahe 1 month ago
parent 7486a5c915
commit 7defafc9d7

@ -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),

Loading…
Cancel
Save