mirror of https://github.com/procxx/kepka.git
Fix emoji button with disabled animations.
This commit is contained in:
parent
a70613d929
commit
f493d69bd2
|
@ -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…
Reference in New Issue