Remove thumbnail for colored animated emoji.

This commit is contained in:
John Preston 2019-08-08 23:33:32 +01:00
parent 6710372d27
commit 93793d8bdd
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ void Sticker::draw(Painter &p, const QRect &r, bool selected) {
if (_lottie && _lottie->ready()) {
paintLottie(p, r, selected);
} else if (!_lottie || !_replacements) {
} else if (!sticker->animated || !_replacements) {
paintPixmap(p, r, selected);
}
}