diff options
Diffstat (limited to '')
-rw-r--r-- | widget/src/slider.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/widget/src/slider.rs b/widget/src/slider.rs index 1bc94661..d89f50e0 100644 --- a/widget/src/slider.rs +++ b/widget/src/slider.rs @@ -401,6 +401,7 @@ pub fn draw<T, R>( border_radius: style.rail.border_radius, border_width: 0.0, border_color: Color::TRANSPARENT, + shadow: Default::default(), }, style.rail.colors.0, ); @@ -416,6 +417,7 @@ pub fn draw<T, R>( border_radius: style.rail.border_radius, border_width: 0.0, border_color: Color::TRANSPARENT, + shadow: Default::default(), }, style.rail.colors.1, ); @@ -431,6 +433,7 @@ pub fn draw<T, R>( border_radius: handle_border_radius, border_width: style.handle.border_width, border_color: style.handle.border_color, + shadow: Default::default(), }, style.handle.color, ); |