2022-11-12 10:34:14AM

This commit is contained in:
Alexander Wang 2022-11-12 10:34:14 -08:00
parent bac1476c39
commit 65128d1346
3 changed files with 3 additions and 3 deletions

View file

@ -564,7 +564,7 @@ func drawShape(writer io.Writer, targetShape d2target.Shape) error {
if targetShape.Multiple { if targetShape.Multiple {
multiplePathData := shape.NewShape(shapeType, geo.NewBox(multipleTL, width, height)).GetSVGPathData() multiplePathData := shape.NewShape(shapeType, geo.NewBox(multipleTL, width, height)).GetSVGPathData()
for _, pathData := range multiplePathData { for _, pathData := range multiplePathData {
fmt.Fprintf(writer, `<path d="%s"/>`, pathData) fmt.Fprintf(writer, `<path d="%s" style="%s"/>`, pathData, style)
} }
} }

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 337 KiB

After

Width:  |  Height:  |  Size: 338 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 336 KiB

After

Width:  |  Height:  |  Size: 337 KiB