We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d373878 + f426c16 commit c4e3f04Copy full SHA for c4e3f04
src/textual/timer.py
@@ -153,7 +153,7 @@ async def _run(self) -> None:
153
next_timer = start + ((count + 1) * _interval)
154
now = _time.get_time()
155
if self._skip and next_timer < now:
156
- count += 1
+ count = int((now - start) / _interval + 1)
157
continue
158
159
wait_time = max(0, next_timer - now)
0 commit comments