From c53bd1aed65edd982e6011c24d8c45d3f732000d Mon Sep 17 00:00:00 2001 From: conduition Date: Tue, 15 Aug 2023 22:27:45 +0000 Subject: [PATCH] fix(core): more info button on shamir recovery screen chore(core): add changelog --- core/.changelog.d/3218.fixed | 1 + core/embed/rust/src/ui/model_tt/layout.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 core/.changelog.d/3218.fixed diff --git a/core/.changelog.d/3218.fixed b/core/.changelog.d/3218.fixed new file mode 100644 index 000000000..67e778caa --- /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 d15211d1e..41a30866d 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, ),