This commit is contained in:
Estebene 2021-05-16 11:51:31 +12:00
parent fdf6aa3b0b
commit 25695b7103
2 changed files with 1 additions and 4 deletions

View file

@ -103,9 +103,6 @@ export function update(expectedStepEnd) {
if ($("#paceCaret").hasClass("hidden")) {
$("#paceCaret").removeClass("hidden");
}
if ($("#paceCaret").hasClass("off")) {
return;
}
try {
settings.currentLetterIndex++;
if (

View file

@ -342,7 +342,7 @@ export function startTest() {
}
try {
if (Config.paceCaret !== "off") PaceCaret.start();
if (Config.paceCaret !== "off" || isPaceRepeat) PaceCaret.start();
} catch (e) {}
//use a recursive self-adjusting timer to avoid time drift
TestStats.setStart(performance.now());