From a198708743de34b16058ca429abe6ebe857c28ed Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Sun, 6 Oct 2024 15:13:59 +0200 Subject: [PATCH] fixed o sequence symbol not filled --- src/sequence.typ | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sequence.typ b/src/sequence.typ index 09806dd..c9300b4 100644 --- a/src/sequence.typ +++ b/src/sequence.typ @@ -297,7 +297,7 @@ // Start circle tip if is-circle-tip(elmt.start-tip) { - shapes += draw.circle(pts.first(), radius: CIRCLE-TIP-RADIUS, stroke: elmt.color, fill: none, name: "_circle-start-tip") + shapes += draw.circle(pts.first(), radius: CIRCLE-TIP-RADIUS, stroke: none, fill: elmt.color, name: "_circle-start-tip") pts.at(0) = "_circle-start-tip" // Start cross tip @@ -319,7 +319,7 @@ // End circle tip if is-circle-tip(elmt.end-tip) { - shapes += draw.circle(pts.last(), radius: 3, stroke: elmt.color, fill: none, name: "_circle-end-tip") + shapes += draw.circle(pts.last(), radius: 3, stroke: none, fill: elmt.color, name: "_circle-end-tip") pts.at(pts.len() - 1) = "_circle-end-tip" // End cross tip