mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +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
|
: (over
|
||||||
? st::historyEmojiCircleFgOver
|
? st::historyEmojiCircleFgOver
|
||||||
: st::historyEmojiCircleFg));
|
: st::historyEmojiCircleFg));
|
||||||
if (_loading && anim::Disabled()) {
|
if (anim::Disabled() && _loading && _loading->animating()) {
|
||||||
anim::DrawStaticLoading(
|
anim::DrawStaticLoading(
|
||||||
p,
|
p,
|
||||||
inner,
|
inner,
|
||||||
|
|
Loading…
Add table
Reference in a new issue