From e7c81cd5f5b0fbced3c5a5e2253d61e12f801951 Mon Sep 17 00:00:00 2001 From: JustMe-NL Date: Sat, 6 Apr 2024 11:14:12 +0200 Subject: [PATCH] Update guiMemoryOptimizer.h Added 2 functions to assist in updating widgets after a new MQTT message --- Platformio/src/applicationInternal/gui/guiMemoryOptimizer.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Platformio/src/applicationInternal/gui/guiMemoryOptimizer.h b/Platformio/src/applicationInternal/gui/guiMemoryOptimizer.h index ddf4372..32610cf 100644 --- a/Platformio/src/applicationInternal/gui/guiMemoryOptimizer.h +++ b/Platformio/src/applicationInternal/gui/guiMemoryOptimizer.h @@ -2,3 +2,5 @@ void gui_memoryOptimizer_prepare_startup(); void gui_memoryOptimizer_doAfterSliding_deletionAndCreation(lv_obj_t** tabview, int oldTabID, int newTabID, bool newGuiList, lv_obj_t** panel, lv_obj_t** img1, lv_obj_t** img2); +bool checkTabActive(std::string tabName); +bool checkTabinMemory(std::string tabName);