From 2818bb3e5fa0fe0a575076d0fd9b21bc277fb60c Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Thu, 26 Jun 2025 16:51:42 +0300 Subject: [PATCH] chore(core): remove unused `ChoiceItem::with_font()` method [no changelog] --- .../ui/layout_caesar/component/input_methods/choice_item.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/core/embed/rust/src/ui/layout_caesar/component/input_methods/choice_item.rs b/core/embed/rust/src/ui/layout_caesar/component/input_methods/choice_item.rs index 1507c223fd..3f45136548 100644 --- a/core/embed/rust/src/ui/layout_caesar/component/input_methods/choice_item.rs +++ b/core/embed/rust/src/ui/layout_caesar/component/input_methods/choice_item.rs @@ -41,12 +41,6 @@ impl ChoiceItem { self } - /// Allows to change the font. - pub fn with_font(mut self, font: Font) -> Self { - self.font = font; - self - } - /// Allows for middle action without release. pub fn with_middle_action_without_release(mut self) -> Self { self.middle_action_without_release = true;