From 3c8201383459ad8a91060a3bf449567334ea244b Mon Sep 17 00:00:00 2001 From: fvanroie Date: Thu, 26 Mar 2020 00:00:12 +0100 Subject: [PATCH] Fix rotation bug --- src/hasp_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hasp_gui.cpp b/src/hasp_gui.cpp index 979f072b..07c2584b 100644 --- a/src/hasp_gui.cpp +++ b/src/hasp_gui.cpp @@ -298,7 +298,7 @@ void guiSetup(JsonObject settings) #endif tftSetup(tft, settings[F("tft")]); - // tft.setRotation(guiRotation); /* 1/3=Landscape or 0/2=Portrait orientation */ + tft.setRotation(guiRotation); /* 1/3=Landscape or 0/2=Portrait orientation */ lv_init(); #if defined(ARDUINO_ARCH_ESP32)