From 11cfb48752bb15e56f99d5e1c68e754a15c3189e Mon Sep 17 00:00:00 2001 From: Peter Feerick Date: Sun, 5 Nov 2023 18:11:35 +1000 Subject: [PATCH] fix(color): Reset LED color at end of throttle check Was part of #4027 --- radio/src/opentx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radio/src/opentx.cpp b/radio/src/opentx.cpp index d4475a45ed4..eb0b7c000e8 100644 --- a/radio/src/opentx.cpp +++ b/radio/src/opentx.cpp @@ -909,8 +909,8 @@ void checkThrottleStick() throttleNotIdle, STR_PRESS_ANY_KEY_TO_SKIP); dialog->setCloseCondition([]() { return !isThrottleWarningAlertNeeded(); }); dialog->runForever(); - LED_ERROR_END(); } + LED_ERROR_END(); } #else void checkThrottleStick()