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