mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +00:00
lottie: properly copy missing property values
This commit is contained in:
parent
305da05b1b
commit
a3481571c8
1 changed files with 4 additions and 0 deletions
|
@ -280,6 +280,7 @@ struct LottieGenericProperty : LottieProperty
|
|||
{
|
||||
copy(rhs);
|
||||
type = rhs.type;
|
||||
ix = rhs.ix;
|
||||
}
|
||||
|
||||
~LottieGenericProperty()
|
||||
|
@ -593,6 +594,7 @@ struct LottieColorStop : LottieProperty
|
|||
{
|
||||
copy(rhs);
|
||||
type = rhs.type;
|
||||
ix = rhs.ix;
|
||||
}
|
||||
|
||||
~LottieColorStop()
|
||||
|
@ -771,6 +773,7 @@ struct LottieTextDoc : LottieProperty
|
|||
{
|
||||
copy(rhs);
|
||||
type = rhs.type;
|
||||
ix = rhs.ix;
|
||||
}
|
||||
|
||||
~LottieTextDoc()
|
||||
|
@ -887,6 +890,7 @@ struct LottieBitmap : LottieProperty
|
|||
{
|
||||
copy(rhs);
|
||||
type = rhs.type;
|
||||
ix = rhs.ix;
|
||||
}
|
||||
|
||||
~LottieBitmap()
|
||||
|
|
Loading…
Add table
Reference in a new issue