summaryrefslogtreecommitdiff
path: root/src/displayapp/DisplayApp.cpp
diff options
context:
space:
mode:
authorJoaquim <joaquim.org@gmail.com>2021-04-11 17:20:15 +0100
committerJoaquim <joaquim.org@gmail.com>2021-04-11 17:20:15 +0100
commitf5e43a16680d1a71c08b02da9a7fef7d6c83abeb (patch)
tree0eb07a4f3c5289940abeb5218f3f5775ec31a779 /src/displayapp/DisplayApp.cpp
parent012c246e401c0745d4b6765217ce7137680070da (diff)
Move Task info to about menu
fix build error in WatchFaceDigital
Diffstat (limited to 'src/displayapp/DisplayApp.cpp')
-rw-r--r--src/displayapp/DisplayApp.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp
index eab4e3b3..773ae9c0 100644
--- a/src/displayapp/DisplayApp.cpp
+++ b/src/displayapp/DisplayApp.cpp
@@ -24,7 +24,7 @@
#include "displayapp/screens/Twos.h"
#include "displayapp/screens/FlashLight.h"
#include "displayapp/screens/BatteryInfo.h"
-#include "displayapp/screens/Tasks.h"
+
#include "drivers/Cst816s.h"
#include "drivers/St7789.h"
#include "drivers/Watchdog.h"
@@ -308,11 +308,6 @@ void DisplayApp::LoadApp(Apps app, DisplayApp::FullRefreshDirections direction)
case Apps::Motion:
currentScreen = std::make_unique<Screens::Motion>(this, motionController);
break;
- case Apps::Tasks:
- currentScreen = std::make_unique<Screens::Tasks>(this);
- returnApp(Apps::Launcher, FullRefreshDirections::Down, TouchEvents::SwipeDown);
- break;
-
}
currentApp = app;
}