From 6817257e82b3945f714d5195835a3f276c7e34ed Mon Sep 17 00:00:00 2001 From: Jason P Date: Mon, 14 Jul 2025 18:20:18 -0500 Subject: [PATCH] TDeck Brightness Works in TFT Builds --- src/graphics/draw/MenuHandler.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/graphics/draw/MenuHandler.cpp b/src/graphics/draw/MenuHandler.cpp index b194a83c3..fe7a0068e 100644 --- a/src/graphics/draw/MenuHandler.cpp +++ b/src/graphics/draw/MenuHandler.cpp @@ -924,9 +924,7 @@ void menuHandler::screenOptionsMenu() { // Check if brightness is supported bool hasSupportBrightness = false; -#if (defined(ST7789_CS) || defined(USE_OLED) || defined(USE_SSD1306) || defined(USE_SH1106) || defined(USE_SH1107) || \ - HAS_TFT) && \ - (!defined(T_DECK)) +#if defined(ST7789_CS) || defined(USE_OLED) || defined(USE_SSD1306) || defined(USE_SH1106) || defined(USE_SH1107) || HAS_TFT hasSupportBrightness = true; #endif