Skip to content

Commit

Permalink
[] sixths: fix drawing timeouts, dot now blinks as expected.
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelmachek committed May 27, 2024
1 parent f97d782 commit cb40bf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/sixths/sixths.app.js
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ function queueDraw() {
next = 60000;
else
next = 1000;
setTimeout(draw, (Date.now() % next));
setTimeout(draw, next - (Date.now() % next));
}
function start() {
g.reset();
Expand Down

0 comments on commit cb40bf0

Please sign in to comment.