keine ahnung was

This commit is contained in:
2022-04-11 15:28:27 +02:00
parent 78d8255b62
commit f188b42987
2 changed files with 2 additions and 3 deletions

View File

@@ -88,7 +88,7 @@ public:
{ {
tft.setTextColor(TFT_GREEN, TFT_BLACK); tft.setTextColor(TFT_GREEN, TFT_BLACK);
m_statuslabel.redraw("OK"); m_statuslabel.redraw("OK");
switchScreen<TMenu>(); popScreen();
} }
} }
@@ -102,7 +102,7 @@ public:
using espgui::Button; using espgui::Button;
case Button::Left: case Button::Left:
if (!m_waitingForResult) if (!m_waitingForResult)
switchScreen<TMenu>(); popScreen();
else else
ESP_LOGW(TAG, "tried to leave while waiting for result"); ESP_LOGW(TAG, "tried to leave while waiting for result");
break; break;

View File

@@ -4,7 +4,6 @@
#include <esp_heap_caps.h> #include <esp_heap_caps.h>
// 3rdparty lib includes // 3rdparty lib includes
#include <actions/switchscreenaction.h>
#include <widgets/label.h> #include <widgets/label.h>
#include <widgets/progressbar.h> #include <widgets/progressbar.h>
#include <espchrono.h> #include <espchrono.h>