diff --git a/src/static/js/tutorial.js b/src/static/js/tutorial.js index d8bf307..1d24ff2 100644 --- a/src/static/js/tutorial.js +++ b/src/static/js/tutorial.js @@ -2268,12 +2268,14 @@ const Tutorial = { if (!cb) continue; this._highlightSub(checks[i]); if (pos) { - pos = await this._cursorToElement(checks[i], pos.x, pos.y); + pos = await this._cursorToToggle(checks[i], pos.x, pos.y); } else { - pos = await this._cursorToElement(checks[i]); + pos = await this._cursorToToggle(checks[i]); } + await this._wait(400); + await this._clickAtCursor(); cb.checked = true; - await this._wait(1000); + await this._wait(800); this._clearSubHighlights(); }