From 0c13af179ff72ee27bea48e394a16cfc14257163 Mon Sep 17 00:00:00 2001 From: Nick Senger Date: Tue, 2 Aug 2022 16:03:29 -0700 Subject: feat: allow specification of `border_radius` for `pick_list::Menu` --- style/src/menu.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'style/src/menu.rs') diff --git a/style/src/menu.rs b/style/src/menu.rs index b1dd5ea0..6ef3e2a2 100644 --- a/style/src/menu.rs +++ b/style/src/menu.rs @@ -6,6 +6,7 @@ pub struct Appearance { pub text_color: Color, pub background: Background, pub border_width: f32, + pub border_radius: f32, pub border_color: Color, pub selected_text_color: Color, pub selected_background: Background, -- cgit