diff --git a/core/embed/rust/src/ui/layout_eckhart/component/button.rs b/core/embed/rust/src/ui/layout_eckhart/component/button.rs index 4fd60e5f09..318ff7e385 100644 --- a/core/embed/rust/src/ui/layout_eckhart/component/button.rs +++ b/core/embed/rust/src/ui/layout_eckhart/component/button.rs @@ -159,6 +159,10 @@ impl Button { } } + pub fn set_expanded_touch_area(&mut self, expand: Insets) { + self.touch_expand = Some(expand); + } + pub fn content(&self) -> &ButtonContent { &self.content }