From c209aedb22a1c612f868112e65253aa9160db39c Mon Sep 17 00:00:00 2001 From: John Preston Date: Sun, 29 Mar 2020 13:47:07 +0400 Subject: [PATCH] Fix dice animating to the last frame. I hope this fixes #7465. --- .../SourceFiles/history/view/media/history_view_sticker.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Telegram/SourceFiles/history/view/media/history_view_sticker.cpp b/Telegram/SourceFiles/history/view/media/history_view_sticker.cpp index 2270fe15b..434359764 100644 --- a/Telegram/SourceFiles/history/view/media/history_view_sticker.cpp +++ b/Telegram/SourceFiles/history/view/media/history_view_sticker.cpp @@ -254,6 +254,10 @@ void Sticker::unloadLottie() { if (!_lottie) { return; } + if (_diceIndex > 0 && _lastDiceFrame.isNull()) { + _nextLastDiceFrame = false; + _lottieOncePlayed = false; + } _lottie = nullptr; _parent->data()->history()->owner().unregisterHeavyViewPart(_parent); }