From 54dd7d3ff930f1ed2a249a85d8e62dfadfa47f1a Mon Sep 17 00:00:00 2001 From: KOTYA8 <138892762+KOTYA8@users.noreply.github.com> Date: Thu, 3 Aug 2023 21:32:00 +0300 Subject: [PATCH] Fixed Theme --- TEF6686_ESP32.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TEF6686_ESP32.ino b/TEF6686_ESP32.ino index 40acae2..93a9648 100644 --- a/TEF6686_ESP32.ino +++ b/TEF6686_ESP32.ino @@ -3061,7 +3061,7 @@ void KeyDown() { switch (menuoption) { case 30: CurrentTheme --; - if (CurrentTheme > 10) CurrentTheme = 9; + if (CurrentTheme > 10) CurrentTheme = 10; doTheme(); tft.drawRoundRect(10, 30, 300, 170, 5, ActiveColor); tft.fillRoundRect(12, 32, 296, 166, 5, BackgroundColor);