From 30ddabc15b5639f85d8220548eade0eff07c81e7 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 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, ),