From c31990f5bdb04b04588cee0cdd2f9db85295813c Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Mon, 29 Jun 2026 11:53:34 +0200 Subject: [PATCH] Fix a typo --- src/renderview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderview.js b/src/renderview.js index a28ac18..f8e27b1 100644 --- a/src/renderview.js +++ b/src/renderview.js @@ -596,7 +596,7 @@ class BaseRenderView { viewElement.addEventListener('pointerdown', (ev) => { // When pointer is down, set focus to the focus-element. if (!LOOKS_LIKE_MOBILE) { - this._focusElement.focus({ preventScroll: true, focusVisble: false }) + this._focusElement.focus({ preventScroll: true, focusVisible: false }) } // capture the pointing device. // Because we capture the event, there will be no other events when buttons are pressed down,