diff options
| author | Michele Bini <michele.bini@gmail.com> | 2022-03-31 14:33:31 (GMT) |
|---|---|---|
| committer | Michele Bini <michele.bini@gmail.com> | 2022-03-31 14:33:31 (GMT) |
| commit | 2c23b1cc6911a14dba14fcc04ac52995d672ebcd (patch) | |
| tree | 12c08e08bbd0f7366377443a23d43c2416b2ccda | |
| parent | ef816addbc85b4447d9f304d218d8430aef473fd (diff) | |
prevent crash
| -rw-r--r-- | src/displayapp/screens/ApplicationList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/ApplicationList.cpp b/src/displayapp/screens/ApplicationList.cpp index 98b6368..6709b2a 100644 --- a/src/displayapp/screens/ApplicationList.cpp +++ b/src/displayapp/screens/ApplicationList.cpp @@ -42,7 +42,7 @@ std::unique_ptr<Screen> ApplicationList::CreateScreen1() { {Symbols::clock, Apps::Alarm}, }}; - return std::make_unique<Screens::Tile>(1, 2, app, settingsController, batteryController, dateTimeController, applications); + return std::make_unique<Screens::Tile>(0, 1, app, settingsController, batteryController, dateTimeController, applications); } /*std::unique_ptr<Screen> ApplicationList::CreateScreen3() { |
