From 78d5abd9b154b49fd4bb54fc7f55af8b376a78e4 Mon Sep 17 00:00:00 2001 From: grdddj Date: Wed, 23 Aug 2023 10:51:39 +0200 Subject: [PATCH] chore(core): replace `View full` button text with `Show all` [no changelog] --- core/embed/rust/src/ui/model_tr/component/address_details.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/embed/rust/src/ui/model_tr/component/address_details.rs b/core/embed/rust/src/ui/model_tr/component/address_details.rs index 65ef446f0a..c4b47a246e 100644 --- a/core/embed/rust/src/ui/model_tr/component/address_details.rs +++ b/core/embed/rust/src/ui/model_tr/component/address_details.rs @@ -108,7 +108,7 @@ where /// Button layout for the current page. /// Normally there are arrows everywhere, apart from the right side of the - /// last page. On xpub pages there is VIEW FULL middle button when it + /// last page. On xpub pages there is SHOW ALL middle button when it /// cannot fit one page. On xpub subpages there are wide arrows to /// scroll. fn get_button_layout(&mut self) -> ButtonLayout { @@ -123,7 +123,7 @@ where } else { let left = Some(ButtonDetails::left_arrow_icon()); let middle = if self.is_xpub_page() && self.subpages_in_current_page() > 1 { - Some(ButtonDetails::armed_text("VIEW FULL".into())) + Some(ButtonDetails::armed_text("SHOW ALL".into())) } else { None };