mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-13 19:44:28 +00:00
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:
parent
00324f5e19
commit
9b8ff114eb
1 changed files with 1 additions and 0 deletions
|
@ -138,6 +138,7 @@ struct RenderStroke
|
|||
dashPattern = nullptr;
|
||||
}
|
||||
dashCnt = rhs.dashCnt;
|
||||
dashOffset = rhs.dashOffset;
|
||||
miterlimit = rhs.miterlimit;
|
||||
cap = rhs.cap;
|
||||
join = rhs.join;
|
||||
|
|
Loading…
Add table
Reference in a new issue