(self)
| 109 | self._speed = speed |
| 110 | |
| 111 | def isUpdateNeeded(self): |
| 112 | if super(QProgressStyleAnimation, self).isUpdateNeeded(): |
| 113 | current = self.animationStep() |
| 114 | if self._step == -1 or self._step != current: |
| 115 | self._step = current |
| 116 | return True |
| 117 | return False |
nothing calls this directly
no test coverage detected