mirror of
https://github.com/vale981/tdesktop
synced 2025-03-06 10:11:41 -05:00
QtLottie: Fix scaling in some animations.
This commit is contained in:
parent
5e5b4197e9
commit
68eb48be8d
2 changed files with 2 additions and 2 deletions
2
Telegram/ThirdParty/qtlottie
vendored
2
Telegram/ThirdParty/qtlottie
vendored
|
@ -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…
Add table
Reference in a new issue