mirror of https://github.com/procxx/kepka.git
QtLottie: Fix scaling in some animations.
This commit is contained in:
parent
5e5b4197e9
commit
68eb48be8d
|
@ -1 +1 @@
|
||||||
Subproject commit f8647f47a1a2304a8c534fd83c91c118e409adf6
|
Subproject commit eac3909a82a19213ef1a8dd634cc227f327d0e7b
|
|
@ -392,7 +392,7 @@ protected:
|
||||||
QJsonArray eoxArr = easingOut.value(QLatin1String("x")).toArray();
|
QJsonArray eoxArr = easingOut.value(QLatin1String("x")).toArray();
|
||||||
QJsonArray eoyArr = easingOut.value(QLatin1String("y")).toArray();
|
QJsonArray eoyArr = easingOut.value(QLatin1String("y")).toArray();
|
||||||
|
|
||||||
while (!eixArr.isEmpty() && !eiyArr.isEmpty()) {
|
if (!eixArr.isEmpty() && !eiyArr.isEmpty()) {
|
||||||
qreal eix = eixArr.takeAt(0).toDouble();
|
qreal eix = eixArr.takeAt(0).toDouble();
|
||||||
qreal eiy = eiyArr.takeAt(0).toDouble();
|
qreal eiy = eiyArr.takeAt(0).toDouble();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue