effects/desktopgrid: don't forget to schedule repaints when timeline is running
BUG: 444678 FIXED-IN: 5.24.4
This commit is contained in:
parent
5ffc307ca8
commit
eb933bfe0b
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ void DesktopGridEffect::postPaintScreen()
|
|||
{
|
||||
bool resetLastPresentTime = true;
|
||||
|
||||
if (activated ? timeline.currentValue() != 1 : timeline.currentValue() != 0) {
|
||||
if (timelineRunning || activated ? timeline.currentValue() != 1 : timeline.currentValue() != 0) {
|
||||
effects->addRepaintFull(); // Repaint during zoom
|
||||
resetLastPresentTime = false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue