mirror of https://github.com/procxx/kepka.git
Fixed top bar glitch when returning dialog back too fast.
This commit is contained in:
parent
9bfa6d7cf4
commit
ba8257ce64
|
@ -539,6 +539,7 @@ void TopBarWidget::updateControlsGeometry() {
|
||||||
void TopBarWidget::finishAnimating() {
|
void TopBarWidget::finishAnimating() {
|
||||||
_selectedShown.stop();
|
_selectedShown.stop();
|
||||||
updateControlsVisibility();
|
updateControlsVisibility();
|
||||||
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
void TopBarWidget::setAnimatingMode(bool enabled) {
|
void TopBarWidget::setAnimatingMode(bool enabled) {
|
||||||
|
@ -546,7 +547,6 @@ void TopBarWidget::setAnimatingMode(bool enabled) {
|
||||||
_animatingMode = enabled;
|
_animatingMode = enabled;
|
||||||
setAttribute(Qt::WA_OpaquePaintEvent, !_animatingMode);
|
setAttribute(Qt::WA_OpaquePaintEvent, !_animatingMode);
|
||||||
finishAnimating();
|
finishAnimating();
|
||||||
updateControlsVisibility();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue