Fixed incorrect type of polygon clip shape while converting it to a string

This commit is contained in:
Mikalai Turankou 2025-05-21 14:52:57 +03:00
parent 561164bc23
commit e96b9193cc
1 changed files with 1 additions and 1 deletions

View File

@ -506,7 +506,7 @@ func (clip *polygonClipData) points() []any {
func (clip *polygonClipData) writeString(buffer *strings.Builder, indent string) {
buffer.WriteString("inset { ")
buffer.WriteString("polygon { ")
if points := clip.points(); points != nil {
buffer.WriteString(string(Points))