mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-16 14:17:12 +02:00
Fix emoji button with disabled animations.
This commit is contained in:
parent
a70613d929
commit
f493d69bd2
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ void EmojiButton::paintEvent(QPaintEvent *e) {
|
|||
: (over
|
||||
? st::historyEmojiCircleFgOver
|
||||
: st::historyEmojiCircleFg));
|
||||
if (_loading && anim::Disabled()) {
|
||||
if (anim::Disabled() && _loading && _loading->animating()) {
|
||||
anim::DrawStaticLoading(
|
||||
p,
|
||||
inner,
|
||||
|
|
Loading…
Add table
Reference in a new issue