mirror of https://github.com/procxx/kepka.git
parent
2a7fdfc832
commit
a0b3b1affd
|
@ -146,12 +146,11 @@ void FadeAnimation::startAnimation(int duration) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void FadeAnimation::updateCallback() {
|
void FadeAnimation::updateCallback() {
|
||||||
if (_animation.animating()) {
|
_widget->update();
|
||||||
_widget->update();
|
if (_updatedCallback) {
|
||||||
if (_updatedCallback) {
|
_updatedCallback(_animation.value(_visible ? 1. : 0.));
|
||||||
_updatedCallback(_animation.value(_visible ? 1. : 0.));
|
}
|
||||||
}
|
if (!_animation.animating()) {
|
||||||
} else {
|
|
||||||
stopAnimation();
|
stopAnimation();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue