From 986c0ce36843bc294626580e3dabac030dddea39 Mon Sep 17 00:00:00 2001 From: Juan Antonio Date: Sun, 24 Dec 2023 22:56:28 +0100 Subject: [PATCH] Fix RX not honoring Backlight on TX/RX settings properly Fixes #317 --- app/app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.c b/app/app.c index 26df3c1..4c08fca 100644 --- a/app/app.c +++ b/app/app.c @@ -461,7 +461,7 @@ void APP_StartListening(FUNCTION_Type_t function) AUDIO_AudioPathOn(); gEnableSpeaker = true; - if (gSetting_backlight_on_tx_rx != BACKLIGHT_ON_TR_OFF) { + if (gSetting_backlight_on_tx_rx & BACKLIGHT_ON_TR_RX) { BACKLIGHT_TurnOn(); }