Skip to content

Commit

Permalink
Set point radius to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
lehecht committed Jan 25, 2024
1 parent e2c97bc commit e2909cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jobs/GenerateAnnotationPatch.php
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ protected function getSVGAnnotation($shapeId, $points)

switch ($shapeId) {
case Shape::pointId():
$radius = 3;
$radius = 1;
return new SVGCircle($points[0], $points[1], $radius);
case Shape::circleId():
return new SVGCircle($points[0], $points[1], $points[2]);
Expand Down

0 comments on commit e2909cb

Please sign in to comment.