From 1245bab1a277111deb689c3677152155d989181c Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" <5425387+Ralim@users.noreply.github.com> Date: Thu, 25 Aug 2022 09:17:28 +1000 Subject: [PATCH] Bump timeout for menu actions (#1384) --- source/Core/Src/settingsGUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Core/Src/settingsGUI.cpp b/source/Core/Src/settingsGUI.cpp index 7d2c2061..29ed4dc1 100644 --- a/source/Core/Src/settingsGUI.cpp +++ b/source/Core/Src/settingsGUI.cpp @@ -1021,7 +1021,7 @@ void gui_Menu(const menuitem *menu) { autoRepeatAcceleration = PRESS_ACCEL_INTERVAL_MAX - PRESS_ACCEL_INTERVAL_MIN; } - if ((xTaskGetTickCount() - lastButtonTime) > (TICKS_SECOND * 30)) { + if ((xTaskGetTickCount() - lastButtonTime) > (TICKS_SECOND * 2 * 60)) { // If user has not pressed any buttons in 30 seconds, exit back a menu layer // This will trickle the user back to the main screen eventually earlyExit = true;