Fix CircleShape::visual_bounding_rect() (#1575)
This commit is contained in:
parent
1dd014cbed
commit
cb2298e98b
1 changed files with 1 additions and 1 deletions
|
@ -331,7 +331,7 @@ impl CircleShape {
|
|||
} else {
|
||||
Rect::from_center_size(
|
||||
self.center,
|
||||
Vec2::splat(self.radius + self.stroke.width / 2.0),
|
||||
Vec2::splat(self.radius * 2.0 + self.stroke.width),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue