From 370b2f6df799c948188d3949e34112258b2a8498 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 20 Jan 2024 12:25:07 +0100 Subject: Use `Default` implementation of `renderer::Quad` --- widget/src/pick_list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'widget/src/pick_list.rs') diff --git a/widget/src/pick_list.rs b/widget/src/pick_list.rs index 8931aa99..ef0c0eb3 100644 --- a/widget/src/pick_list.rs +++ b/widget/src/pick_list.rs @@ -656,7 +656,7 @@ pub fn draw<'a, T, Renderer>( border_color: style.border_color, border_width: style.border_width, border_radius: style.border_radius, - shadow: Default::default(), + ..renderer::Quad::default() }, style.background, ); -- cgit