This commit is contained in:
Bernard Xie 2023-03-29 13:32:47 -07:00
parent 3de958deb6
commit 558f0d5cc7
No known key found for this signature in database
GPG key ID: 3C3E0036CE0F892C

View file

@ -238,7 +238,7 @@ func (diagram Diagram) BoundingBox() (topLeft, bottomRight Point) {
} }
func (diagram Diagram) GetNestedUniqueChars() string { func (diagram Diagram) GetNestedUniqueChars() string {
var texts = diagram.GetUniqueChars() texts := diagram.GetUniqueChars()
for _, d := range diagram.Layers { for _, d := range diagram.Layers {
texts = texts + d.GetNestedUniqueChars() texts = texts + d.GetNestedUniqueChars()
} }