(self)
| 1045 | return self.autoplayTimer.running |
| 1046 | |
| 1047 | def startAutoplayCountdown(self): |
| 1048 | if self.autoplayConditionsMet() and not self.autoplayTimer.running: |
| 1049 | self.autoplayTimeLeft = constants.AUTOPLAY_DELAY |
| 1050 | self.autoplayTimer.start(1) |
| 1051 | |
| 1052 | def stopAutoplayCountdown(self): |
| 1053 | if self.autoplayTimer.running: |
no test coverage detected