renderer: fix dash offset

The dash offset value was not copied while
'=' opetator was applied.

@Issue: https://github.com/thorvg/thorvg/issues/1643
This commit is contained in:
Mira Grudzinska 2024-12-19 03:40:20 +01:00 committed by GitHub
parent 838785d75a
commit 0f253aac27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -129,6 +129,7 @@ struct RenderStroke
dashPattern = nullptr;
}
dashCnt = rhs.dashCnt;
dashOffset = rhs.dashOffset;
miterlimit = rhs.miterlimit;
cap = rhs.cap;
join = rhs.join;