From a6259a0bbc9bf2e99e872a98d7a4a56a4df856b3 Mon Sep 17 00:00:00 2001 From: Mathias Malmqvist Date: Wed, 26 Nov 2025 18:44:55 +0100 Subject: [PATCH] Open Quick Test when pressing L1 + Options on the controller --- js/core.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/js/core.js b/js/core.js index a09614e..c1fd76d 100644 --- a/js/core.js +++ b/js/core.js @@ -875,6 +875,13 @@ function isRangeCalibrationVisible() { function handleControllerInput({ changes, inputConfig, touchPoints, batteryStatus }) { const { buttonMap } = inputConfig; + // Open Quick Test modal if options button is pressed while L1 is held down + if (changes.options && controller.button_states.l1) { + update_ds_button_svg({ l1: false }, buttonMap); // Clear L1 + show_quick_test_modal(controller); + return; + } + // Update range calibration modal stick visualization if visible if (isRangeCalibrationVisible() && changes.sticks) { collectCircularityData(changes.sticks, ll_data, rr_data);