From da438f8464c24c4b9dedc68d2431e2f35059beaa Mon Sep 17 00:00:00 2001 From: Miodec Date: Sat, 8 Jan 2022 16:57:46 +0100 Subject: [PATCH] disabling default tab behavior when not on test page and quick tab is enabled --- src/js/input-controller.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/js/input-controller.js b/src/js/input-controller.js index 5310944b7..825ccfece 100644 --- a/src/js/input-controller.js +++ b/src/js/input-controller.js @@ -645,6 +645,7 @@ function handleTab(event) { } } } else if (Config.quickTab) { + event.preventDefault(); UI.changePage("test"); } }