0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 00:10:11 -05:00

🐛 Fix dotted strokes

This commit is contained in:
Alejandro Alonso 2024-01-30 20:18:25 +01:00 committed by Andrey Antukh
parent e1befadc18
commit 36dce3ddbc

View file

@ -24,7 +24,7 @@
w+10 (+ 10 width)]
(case style
:mixed (str/concat "" w+5 "," w+5 "," w+1 "," w+5)
:dotted (str/concat "" (- (* width 2)) "," w+5)
:dotted (str/concat "0," w+5)
:dashed (str/concat "" w+10 "," w+10)
"")))