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
parent 00324f5e19
commit 9b8ff114eb

View file

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