From 4b7667ec3912aea7064342d9123ca3635058164f Mon Sep 17 00:00:00 2001 From: Alexander Zinchuk Date: Sun, 13 Nov 2022 17:05:35 +0400 Subject: [PATCH] Message / Sticker: Fix reduced animation quality --- src/components/common/StickerView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/common/StickerView.tsx b/src/components/common/StickerView.tsx index 969c3e558..6273fcd04 100644 --- a/src/components/common/StickerView.tsx +++ b/src/components/common/StickerView.tsx @@ -132,7 +132,7 @@ const StickerView: FC = ({ color={customColor} noLoop={!shouldLoop} forceOnHeavyAnimation={forceOnHeavyAnimation} - isLowPriority={!selectIsAlwaysHighPriorityEmoji(getGlobal(), stickerSetInfo)} + isLowPriority={isSmall && !selectIsAlwaysHighPriorityEmoji(getGlobal(), stickerSetInfo)} onLoad={markPlayerReady} onLoop={onAnimatedStickerLoop} onEnded={onAnimatedStickerLoop}