mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-08 13:43:43 +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
838785d75a
commit
0f253aac27
1 changed files with 1 additions and 0 deletions
|
@ -129,6 +129,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