This commit is contained in:
Casper Storm 2023-05-23 15:28:45 +02:00
parent 1c86defab5
commit 1234d52812
11 changed files with 15 additions and 16 deletions

View file

@ -818,7 +818,7 @@ pub fn draw<Renderer>(
renderer.fill_quad(
renderer::Quad {
bounds: scrollbar.bounds,
border_radius: style.border_radius.into(),
border_radius: style.border_radius,
border_width: style.border_width,
border_color: style.border_color,
},
@ -838,7 +838,7 @@ pub fn draw<Renderer>(
renderer.fill_quad(
renderer::Quad {
bounds: scrollbar.scroller.bounds,
border_radius: style.scroller.border_radius.into(),
border_radius: style.scroller.border_radius,
border_width: style.scroller.border_width,
border_color: style.scroller.border_color,
},