diff --git a/core/.changelog.d/3218.fixed b/core/.changelog.d/3218.fixed new file mode 100644 index 0000000000..67e778caa4 --- /dev/null +++ b/core/.changelog.d/3218.fixed @@ -0,0 +1 @@ +Fix more info button on shamir recovery screen. diff --git a/core/embed/rust/src/ui/model_tt/layout.rs b/core/embed/rust/src/ui/model_tt/layout.rs index bc2dbbc636..4cb83d579c 100644 --- a/core/embed/rust/src/ui/model_tt/layout.rs +++ b/core/embed/rust/src/ui/model_tt/layout.rs @@ -1477,7 +1477,7 @@ extern "C" fn new_show_remaining_shares(n_args: usize, args: *const Obj, kwargs: SwipePage::new( paragraphs.into_paragraphs(), theme::button_bar(Button::with_text("CONTINUE").map(|msg| { - (matches!(msg, ButtonMsg::Clicked)).then(|| CancelConfirmMsg::Confirmed) + (matches!(msg, ButtonMsg::Clicked)).then(|| CancelConfirmMsg::Cancelled) })), theme::BG, ),