mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-16 04:54:39 +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;
|
dashPattern = nullptr;
|
||||||
}
|
}
|
||||||
dashCnt = rhs.dashCnt;
|
dashCnt = rhs.dashCnt;
|
||||||
|
dashOffset = rhs.dashOffset;
|
||||||
miterlimit = rhs.miterlimit;
|
miterlimit = rhs.miterlimit;
|
||||||
cap = rhs.cap;
|
cap = rhs.cap;
|
||||||
join = rhs.join;
|
join = rhs.join;
|
||||||
|
|
Loading…
Add table
Reference in a new issue