File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
core/embed/rust/src/ui/layout_eckhart/firmware Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,11 @@ impl Header {
78
78
debug_assert ! ( matches!( button. content( ) , ButtonContent :: Icon ( _) ) ) ;
79
79
Self {
80
80
icon : None ,
81
- left_button : Some ( button. with_expanded_touch_area ( Self :: BUTTON_TOUCH_EXPAND ) ) ,
81
+ left_button : Some (
82
+ button
83
+ . with_expanded_touch_area ( Self :: BUTTON_TOUCH_EXPAND )
84
+ . with_radius ( 12 ) ,
85
+ ) ,
82
86
left_button_msg : msg,
83
87
..self
84
88
}
@@ -87,7 +91,9 @@ impl Header {
87
91
#[ inline( never) ]
88
92
pub fn with_menu_button ( self ) -> Self {
89
93
self . with_right_button (
90
- Button :: with_icon ( theme:: ICON_MENU ) . styled ( theme:: button_header ( ) ) ,
94
+ Button :: with_icon ( theme:: ICON_MENU )
95
+ . styled ( theme:: button_header ( ) )
96
+ . with_radius ( 12 ) ,
91
97
HeaderMsg :: Menu ,
92
98
)
93
99
}
You can’t perform that action at this time.
0 commit comments