Skip to content

Commit

Permalink
fix circle Border
Browse files Browse the repository at this point in the history
  • Loading branch information
aki-mizu committed Apr 11, 2024
1 parent b8011a7 commit d57a438
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/component/circle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ where
renderer.fill_quad(
renderer::Quad {
bounds: layout.bounds(),
border: Border::with_radius(self.radius),
border: Border {
width: 0.0,
color: Color::TRANSPARENT,
radius: self.radius.into(),
},
..renderer::Quad::default()
},
self.color,
Expand Down

0 comments on commit d57a438

Please sign in to comment.