lottie: hotfix layer effect parsing

fixed a break in expressions/driving.json
This commit is contained in:
Hermet Park 2024-10-03 13:44:41 +09:00
parent 2b3a2e5ddf
commit 38f6ff4380

View file

@ -1270,6 +1270,7 @@ void LottieParser::parseGaussianBlur(LottieGaussianBlur* effect)
if (idx == 0) parsePropertyInternal(effect->blurness);
else if (idx == 1) parsePropertyInternal(effect->direction);
else if (idx == 2) parsePropertyInternal(effect->wrap);
else skip(key);
++idx;
} else skip(key);
}