Fix dice-type game display.

This commit is contained in:
John Preston 2025-08-08 14:04:32 +04:00
parent 0bc59a82ba
commit 5473696491

View file

@ -569,7 +569,7 @@ void Sticker::dataMediaCreated() const {
void Sticker::setDiceIndex(const QString &emoji, int index) {
_diceEmoji = emoji;
_diceIndex = index;
_playingOnce = (index >= 0);
_playingOnce = (index > 0);
_stopOnLastFrame = (index > 0);
}