1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-27 07:03:14 -04:00

Fix CircleShape::visual_bounding_rect() (#1575)

This commit is contained in:
carrotflakes
2022-05-05 16:16:00 +09:00
committed by GitHub
parent 1dd014cbed
commit cb2298e98b

View File

@@ -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),
)
}
}