From 2018df17ec9df86baf697366fd6cb3e54730d17a Mon Sep 17 00:00:00 2001 From: Lukas Bielesch Date: Mon, 25 Nov 2024 20:39:02 +0100 Subject: [PATCH] fixup! chore(core): show the last passphrase character for a while --- .../src/ui/model_tr/component/input_methods/passphrase.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/embed/rust/src/ui/model_tr/component/input_methods/passphrase.rs b/core/embed/rust/src/ui/model_tr/component/input_methods/passphrase.rs index 31f2760a39..440a5d8702 100644 --- a/core/embed/rust/src/ui/model_tr/component/input_methods/passphrase.rs +++ b/core/embed/rust/src/ui/model_tr/component/input_methods/passphrase.rs @@ -287,7 +287,9 @@ impl PassphraseEntry { choice_page: ChoicePage::new(ChoiceFactoryPassphrase::new(ChoiceCategory::Menu, true)) .with_carousel(true) .with_initial_page_counter(random_menu_position()), - passphrase_dots: Child::new(ChangingTextLine::center_mono("", MAX_PASSPHRASE_LENGTH)), + passphrase_dots: Child::new( + ChangingTextLine::center_mono("", MAX_PASSPHRASE_LENGTH).without_ellipsis(), + ), show_plain_passphrase: false, show_last_digit: false, textbox: TextBox::empty(MAX_PASSPHRASE_LENGTH),